将数据绑定到通过 jQuery 模板呈现的 DOM 节点
我有一组 JSON 数据,正在使用 jQuery 的新模板插件将其渲染为一组表行。其中一条数据是一个文件名,我将其作为数据属性呈现给表行:
<tr data-file="filename">
当我稍后检索它时,这大部分工作正常,但我收到的错误似乎是由未转义的撇号引起的在某些文件名中。为了解决这个问题,我想首先将数据存储为针对表行的 jQuery 数据对象,并完全避免使用 DOM。目前的 jQuery 模板插件有什么办法可以做到这一点吗?
I’ve got a set of JSON data that I’m rendering into a set of table rows using jQuery’s new templating plugin. One of the pieces of data is a filename that I’m rendering to the table row as a data attribute:
<tr data-file="filename">
This mostly works fine when I retrieve it at a later date, but I’m getting errors that seem to be arising from unescaped apostrophes in certain file names. To work around this I’d like to move to just storing the data as a jQuery data object against the table row in the first place and avoiding the DOM completely. Is there any way to do this in the current jQuery template plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在绑定数据文件字段中的值之前,您可以 escape() 该值来处理文件名中的撇号,并且在读取 unescape() 时
You can escape() the value to deal with apostrophes in the file names before binding the value in the data-file field, And when reading unescape()