无法将JavaScript添加到rails应用程序

时间:2016-01-07 05:41:01

标签: ruby-on-rails-4 asset-pipeline

我试图将jquery.validate.min.js添加到我的rails应用程序中。我已将文件复制到

供应商/资产/ Javascript角

将其添加到application.js

SQl Injections

我的application.html.erb有

SqlCommand res = new SqlCommand("Select CustomerID from Customer where Customername = @customername " , connn);
res.Parameters.AddWithValue("@customername",customername );

但是我收到了jquery.validate.min.js的错误404

做错了什么?

1 个答案:

答案 0 :(得分:0)

如果正在使用application.js,则不需要在布局中调用它

<%= javascript_include_tag "vendor/jquery.validate.min" %>

但你需要

<%= javascript_include_tag 'application' %>

如果您想手动加载jquery.validate.min,则需要将其添加到预编译列表中

Add `Rails.application.config.assets.precompile += %w( jquery.validate.min.js )` to `config/initializers/assets.rb` and restart your server

希望有所帮助