gpt4 book ai didi

javascript - 如何使用 Controller 加载自定义js文件?

转载 作者:数据小太阳 更新时间:2023-10-29 08:45:46 27 4
gpt4 key购买 nike

如果我遵循 user_create_path,文件“views/users/create.js.erb”将运行,如果我使用此代码:

users_controller.br

def create
#...
respond_to do |format|
format.html { redirect_to root_path }
format.js
end
end

如何有条件地加载不同的js文件?

我正在考虑这些方面的事情:

def create
#...
if User.all.count < 50
respond_to do |format|
format.html { redirect_to root_path }
format.js { create_a.js.erb }
end
else
respond_to do |format|
format.html { redirect_to root_path }
format.js { create_b.js.erb }
end
end
end

最佳答案

也许你应该根据条件运行不同的 js?

users_controller.rb

def create
respond_to do |format|
format.html { redirect_to root_path }
format.js { @users_count = User.all.count }
end
end

create.js.erb

<% if @users_count < 50 %>
alert('a');
<% else %>
alert('b');
<% end %>

关于javascript - 如何使用 Controller 加载自定义js文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29237337/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com