JSON 对象传递到控制器以在嵌套集模型中使用它
我正在 JQuery 和 Javascript 的帮助下制作一个树结构。
该树具有
..
的 HTML 结构,并且内部 每个li
都有一个包含两个 Span 的div
。
第一个跨度包含图像,后者包含节点数据。
当树完成后我必须通过 完整的树作为控制器的 JSON 对象 使用它来使用嵌套集模型分配左右值。
如何制作 JSON 对象?
I am making a tree structure with the help of JQuery and Javascript.
The tree has the HTML structure of <ul><li>..
and within
every li
there is a div
that contains two spans.
The first span contains an image and the latter contains the node data.
When the tree is completed I have to pass
the complete tree as a JSON object to a controller
to use it for assigning the left right values using nested set model.
How can I make the JSON object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您的
分配一个 ID:
然后使用
JSON
对象中的stringify
来获取 JSON 字符串:如果您有如果正确引用了 JQuery,那么应该会给出树的 JSON 表示形式。
Assign an ID to your
<ul>
:And then use
stringify
from theJSON
object to get the JSON string:If you've got JQuery referenced properly, then that should give your the JSON representation of your tree.