从模板中删除数据存储实体
在我的应用程序中,我有一个从数据存储区读取数据的模板,表格如下所示:
- 姓名/姓氏/操作
- 约翰/多伊/(删除按钮)
- 杰克/布什/(删除按钮)
- ...
我正在寻找最好的将删除按钮关联到相关实体(行)的做法
有人可以告诉我方法吗?
In my app i have a template that read data from datastore, the table is like this:
- name / surname / action
- john / doe / (delete button)
- jack / bush / (delete button)
- ...
i'm looking for the best pratices for associate the delete button to the relative entitie (row)
Someone can show me the way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最佳实践是使用实体 ID 来执行删除。
我的建议是将 ID 存储在隐藏字段中,或者将 ID 作为按钮的名称或值。
Best practice woud be to use the entity id to perform the delete.
My recommendation would be to either store the ID in a hidden field, or put the ID as the name or value of the button.