Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Rails 应用程序中,我想要单属性 AJAX 更新,例如“单击表中的行标签以切换公共/私有标志”。实现这一点的最佳策略是什么?使用update控制器中的方法还是自定义方法?
update
除非您有一些令人信服的理由使用自定义方法,否则只需使用正常更新,发送您的典型object[attr] = value有效负载。它很简单,开箱即用,并且遵循 REST。
object[attr] = value