将数据绑定到通过 jQuery 模板呈现的 DOM 节点

发布于 2024-10-03 11:26:51 字数 267 浏览 3 评论 0原文

我有一组 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 技术交流群。

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

发布评论

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

评论(1

屋檐 2024-10-10 11:26:51

在绑定数据文件字段中的值之前,您可以 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()

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