0
我試圖整合解決方案上市here到我的導軌(3.1)的應用程序。裝載樣品JSON Rails的形式
我有在底部一些鏈路的基本形式從JSON文件加載一些示例數據。
app/views/users/new.html.erb
<%= form_for(@user) do |f| %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :email %><br />
<%= f.text_field :email %>
</div>
<% end %>
<%= link_to "Load alice", "#" %>
<%= link_to "Load bob", "#" %>
public fixtures/sample.json
{ "name" : "alice", "email" : "[email protected]",
"name" : "bob", "email" : "[email protected]" }
什麼是正確的方法來建立鏈接的樣本數據加載到形式?我知道我可以只使用onclick
事件來打電話給js,但這會很麻煩..