我读的形式佣工指南http://guides.rubyonrails.org/form_helpers.html ,但我不知道我是否真的需要写我的网页这样..
我已经写在这样一个HTML表单new.html.erb
<form action="/posts" method="post">
<label for="title">Test</label>
<input id="title"/>
<input type="submit" value="submit"/>
</form>
(该posts
页面是从入门指南)
当我提交请求时,服务器抛出ActionController::InvalidAuthenticityToken
例外。
所以,我把它改成
<%= form_for :post, url: {action: "create"} do |f| %>
<label for="title">Test</label>
<input id="title"/>
<input type="submit" value="submit"/>
<% end %>
现在我有相同的形式,除了现在服务器接受请求。
是形式佣工发展Rails的意见形式的正确方法?