Rails:JavaScript 关闭时不显眼的删除

发布于 2024-12-20 15:06:43 字数 148 浏览 1 评论 0原文

如果 JavaScript 关闭,不显眼的删除如何工作?

鉴于 data-method='delete' 被忽略,您似乎只是获得了记录的链接。我想这就是意图,对于开发人员来说这当然是快速和简单的,但如果是这样的话,它并没有真正符合用户单击“删除”链接时所期望的效果。

How does unobtrusive delete work if JavaScript is turned off?

It seems like you just get a link to the record, given that data-method='delete' is ignored. I guess that's the intention, it's certainly quick and easy for the developer, but if that's the case, it doesn't really stack up with what the user would expect if they click a "delete" link.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

别再吹冷风 2024-12-27 15:06:43

确实有一篇优秀的博客文章涵盖了这一点。

There is really an excellent blog post covering just this.

东北女汉子 2024-12-27 15:06:43

尝试将 ?_method=delete 添加到删除链接。完全未经测试的代码:

<%= link_to "Delete", record_path(@record, :_method => "delete") %>

Try adding ?_method=delete to your delete links. Completely untested code:

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