在rails中使用js.erb
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在rails中使用js.erb相关的知识,希望对你有一定的参考价值。
在使用devise
的Rails 5应用程序中,我需要使用new.js.erb
文件来更新我的注册视图和控制器中的选择标记。我似乎无法弄清楚为什么我的new.js.erb
文件不起作用。
我试过在控制器中使用respond_to
如下,
注册-controller.rb
def new
super
@cities = CS.get(:us,params[:state])
respond_to do |format|
format.js { render '/new.js.erb' }# layout: false }
format.html
end
end
new.html.erb
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), :remote => true) do |f| %>
<div class="signup-input-container">
<div class="field">
<%= f.text_field :firstname, autofocus: true, autocomplete: "firstname", placeholder: "First name", class: "signup-input-container--input" %>
</div>
<div class="field">
<%= f.select :state, options_for_select(CS.states(:us).map { |code, name| [name, code] }),{:prompt => "State"}, {:class => "signup-input-container--input", :id => "state-picker"} %>
</div>
<div class="field">
<%= f.select :city, options_for_select([]),{}, {:class => "signup-input-container--input", :id => "city-picker"} %>
</div>
</div>
<% end %>
new.js.erb
var city = document.getElementById("city-picker");
while (city.firstChild) city.removeChild(city.firstChild);
var placeholder = document.createElement("option");
placeholder.text = "Choose a city";
placeholder.value = "";
city.appendChild(placeholder);
<% @cities.each do |c| %>
city.options[city.options.length] = new Option('<%= c %>');
<% end %>
main.js
var state = document.getElementById("state-picker");
state.addEventListener("change", function() {
$.ajax({
url: "/states?state=" + state.value,
type: "GET"
})
})
我希望这能在我的控制器中使用我的城市数组创建选择标记选项。有谁知道如何让这个工作?
答案
要解决这个问题,您应该设置一个单独的控制器,您可以从中异步获取数据,也可以使用几个可用于地理查找的免费API,如Googles Geocoding API和Geonames。
要设置单独的控制器,您可以通过以下方式完成:
# /config/routes.rb
get '/states/:state_id/cities', to: 'cities#index'
# /app/controllers/cities_controller.rb
class CitiesController < ApplicationController
# GET
def index
@cities = CS.get(:us, params[:state_id])
respond_to do |f|
f.json { render json: @cities }
end
end
end
我将完全跳过使用.js.erb
模板并返回JSON数据,您可以直接在JS中使用或使用众多现有的自动完成解决方案之一。 .js.erb
只对你想要重用服务器端模板的广泛的HTML模板(例如渲染整个表单)有意义 - 它会大大增加复杂性并且通常会使你的javascript混乱,仅仅输出一个列表是不值得的选项标签。
// If you are using jQuery you might as well setup a delegated
// handler that works with turbolinks,
$(document).on('change', '#state-picker', function(){
$.getJSON("/states/" + $(this).value() + "/cities", function(data){
// using a fragment avoids updating the DOM for every iteration.
var $frag = $('<select>');
$.each(data, function(city){
$frag.append$('<option>' + data + '</option>');
});
$('#city-picker').empty()
.append($('frag').children('option'));
});
});
以上是关于在rails中使用js.erb的主要内容,如果未能解决你的问题,请参考以下文章
Rails update.js.erb 不执行 javascript
在 Rails 3 中处理 JS/ERB 模板中的 JSON