Rails 中 attr_accessible 的反义词是什么?

发布于 2024-12-07 11:51:45 字数 70 浏览 0 评论 0原文

Rails 中 attr_accessible 的反义词是什么?

我不想写每个属性,而是只写我想要阻止的属性。

What is the opposite of attr_accessible in Rails?

Instead of writting every single attribute I want to write just the ones I want to block.

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

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

发布评论

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

评论(2

活泼老夫 2024-12-14 11:51:45

attr_protected

对这些属性的批量分配将被忽略,要分配给它们,您可以使用直接编写器方法。这是为了保护敏感属性不被恶意用户篡改 URL 或表单而覆盖。

attr_protected

Mass-assignment to these attributes will simply be ignored, to assign to them you can use direct writer methods. This is meant to protect sensitive attributes from being overwritten by malicious users tampering with URLs or forms.

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