将主键与网格数据和 jQuery 模板结合使用
使用客户端模板(例如 jQuery 模板)时,将主键与表行关联的最佳方法是什么?
我应该进行某种数据绑定或其他操作吗?或者我应该像这样在表中嵌入和隐藏 id:
<script id="contactsTemplate" type="text/x-jquery-tmpl">
<table class="contacts">
<thead><tr><td class="ui-helper-hidden">Id</td><td>Name</td><td>City</td><td>State</td></tr></thead>
<tbody>
{{each contact}}
{{tmpl($value) '#contactTemplate'}}
{{/each}}
</tbody>
</table>
</script>
<script id="contactTemplate" type="text/x-jquery-tmpl">
<tr><td class="ui-helper-hidden">${id}</td><td>${name}</td><td>${city}</td><td>${state}</td></tr>
</script>
让用户可以访问我的 Id,即使它们是隐藏的,这不是很糟糕吗?我还有什么其他选择?
What is the best way to associate a primary key with a table row when using client-side templates, like jQuery Templates?
Should I do some kind of data binding or something? Or should I embed and hide the id in the table like this:
<script id="contactsTemplate" type="text/x-jquery-tmpl">
<table class="contacts">
<thead><tr><td class="ui-helper-hidden">Id</td><td>Name</td><td>City</td><td>State</td></tr></thead>
<tbody>
{{each contact}}
{{tmpl($value) '#contactTemplate'}}
{{/each}}
</tbody>
</table>
</script>
<script id="contactTemplate" type="text/x-jquery-tmpl">
<tr><td class="ui-helper-hidden">${id}</td><td>${name}</td><td>${city}</td><td>${state}</td></tr>
</script>
Isn't it bad to have my Ids accessible to the user, even if they are hidden? What other options do I have?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 HTML5 自定义数据属性,如下所示
...
有关 HTML5 自定义数据属性的详细信息,请参阅
Use an HTML5 custom data attribute, like so
<tr data-id="${id}">...</tr>
For more on HTML5 custom data attributes, see