Jstree set_type
我将 set_type 方法绑定到 jstree 实例,然后在单击按钮时调用 set_type 方法。这是我的代码:
$("#treeDiv").jstree({..}).bind("set_type.jstree", function(e, data) {
$.post(
"./classes/jstree/_demo/server.php",
{
"operation" : "set_type",
"id" : data.rslt.obj.attr("id").replace("node_",""),
"type" : data.rslt.obj.attr("type")
},
function (r) {
if(!r.status) {
$.jstree.rollback(data.rlbk);
}
}
);
});
$("#settype").click(function() {
$("#treeDiv").jstree("set_type", "block", "#node_663");
});
图标的类型发生变化,但数据库中的类型值没有变化。我做错了什么?
I'm binding a set_type method to my jstree instance, and then calling the set_type method when clicking a button. Here's my code:
$("#treeDiv").jstree({..}).bind("set_type.jstree", function(e, data) {
$.post(
"./classes/jstree/_demo/server.php",
{
"operation" : "set_type",
"id" : data.rslt.obj.attr("id").replace("node_",""),
"type" : data.rslt.obj.attr("type")
},
function (r) {
if(!r.status) {
$.jstree.rollback(data.rlbk);
}
}
);
});
$("#settype").click(function() {
$("#treeDiv").jstree("set_type", "block", "#node_663");
});
Type of the icon changes, but the type value dosen't changes in db. What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了。我发现 class.tree.php 没有更新数据库中类型的方法。
Solved it. I found that class.tree.php has no method that updates type in the database.