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.
我想自定义<%= f.submit %>我的 rails 表单中的文本。
<%= f.submit %>
如果你这样做,<%= f.submit "New object" %>那么它会为新操作和编辑操作显示新对象。我怎样才能使新操作和编辑操作有两种不同的自定义消息?
<%= f.submit "New object" %>
就像假设你有post模型然后@post.new_record?或者f.object.new_record?根据这个有条件地你可以更新文本
post
@post.new_record?
f.object.new_record?