如何使用脚本重新加载具有不同ajax数据源的jstree

发布于 2024-10-11 11:52:32 字数 352 浏览 8 评论 0原文

在我的情况下,

有关数据源的代码部分如下所示:

“json_data”:{ “阿贾克斯”:{ “异步”:假, "url" : "setup/locationTreeJson.htm?id=-1" } ,

在同一页面上,这是一个元素 目标是当我改变值时, 然后使用一些javascript来更改jstree的数据源,例如:

“setup/locationTreeJson.htm?id=[THE_VALUE_FROM_'select element']”

然后重新加载jstree以显示不同的数据

,那么我该怎么做呢?

此致

In my situation,

the part of the code about data source like this:

"json_data" : {
"ajax" : {
"async" : false,
"url" : "setup/locationTreeJson.htm?id=-1"
}
}

and on the same page,this is a element,
the goal is when i change the value,
then use some javascript to change the datasource of the jstree like:

"setup/locationTreeJson.htm?id=[THE_VALUE_FROM_'select element']"

then reload the jstree to display the different data

so, how can I do like this?

best regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅唱々樱花落 2024-10-18 11:52:32

查看更多来源会有所帮助。没有它我就不能太具体。

我认为主要问题是稍后访问 json_data 以便重新加载,对吗?

var jsonDataVar = { "ajax" : { "async" : false, "url" : "setup/locationTreeJson.htm?id=-1" } };

//load jstree with `jsonDataVar` in place of where you had put the literal json object before

//alter jsonDataVar
jsonDataVar['ajax']['url'] = "setup/locationTreeJson.htm?id= " + $(CSS_SELECTOR_HERE).val();

//reload tree

It would help to see some more source. I can't get too specific without it.

I think the main issue is accessing json_data later for the reload, correct?

var jsonDataVar = { "ajax" : { "async" : false, "url" : "setup/locationTreeJson.htm?id=-1" } };

//load jstree with `jsonDataVar` in place of where you had put the literal json object before

//alter jsonDataVar
jsonDataVar['ajax']['url'] = "setup/locationTreeJson.htm?id= " + $(CSS_SELECTOR_HERE).val();

//reload tree
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文