我是 Rails 的新手,我正在为一项看似简单的任务而苦苦挣扎。我有一个(精简的)表格:
<%= form_for @order, html: { :class => 'form-inline' } do |f| %>
<fieldset>
<legend><%= params[:action].capitalize %> Order</legend>
<table class="table">
<thead>
<tr>
<th><%= f.label :symbol %></th>
<th><%= f.label :price %></th>
</tr>
</thead>
<tbody>
<tr>
<td><%= f.text_field :symbol, class: 'input-small' %></td>
<td><%= f.text_field :price, class: 'input-small' %></td>
</tr>
</tbody>
</table>
<div id='here'></div>
<%= f.submit "Submit", class: "btn btn-primary" %>
</fieldset>
<% end %>
<%= link_to 'Get quote', view_quote_orders_path, remote: true %>
当我单击“获取报价”并且符号文本字段失去焦点时,我想在 div $(#here) 中呈现谷歌金融中的报价。我已经编写了代码来提取 Ruby 中的引用。
在 routes.rb 我添加了:
resources :orders do
get 'view_quote', on: :collection
end
在 order_controller.rb 我添加了:
def view_quote
respond_to do |format|
format.js { render :layout => false }
end
end
在 view_quote.js.erb 中:
sym = $('.orders #order_symbol').val();
$('#quotes').html("<%=j render 'googlequote', symbol: sym %>");
在 _googlequote.html.erb 中(我将在其中放置提取报价的逻辑):
<%= symbol %>
错误在 view_quote.js.erb 中,因为 sym 未定义。如果我将第二行替换为:
$('#quotes').html("<%=j render 'googlequote', symbol: 'just_a_test' %>");
部分被渲染,但我当然不需要它。如何将 javascript 变量 sym 传递给部分 _googlequote.html.erb?否则,有没有更好的方法来实现我的目标?