我的知识记录分享

我的知识记录分享

jstree异步加载数据

2020-12-29 糖果小宝 net开发

    $('#container').jstree({
                'core': {
                    'data': {
                        "url":"@Url.Action(nameof(***pp.Controllers.Webs.In*oController.AjaxGe****es))",
                        "data": function (node) {
                            return { "id": node.id, "patternMb": patternMb,};
                        }
                    }
                },
                "plugins": ["search"],
                'search': {
                    'show_only_matches': true,
                    'ajax': {
                        'url': '/device/jstree',
                        'dataType': 'json',
                        'type': 'GET',
                        'data': function (str) {
                            return { "search_str": str };
                        }
                    },
                }
            });
          

发表评论: