在我的Rails應用程序中,我需要在使用app/assets的最終視圖中實現javascript和jQuery代碼。要創建控制器,我手動創建了名爲tweets_controller.rb
的程序,而無需運行導軌生成控制器。我很困惑在哪裏寫我的JavaScript和jQuery代碼,並使其在rails最終視圖中可用。在rails中包含javascript和jQuery代碼3
我對兩個搜索按鈕最終視圖
%=form_tag({controller: 'tweets', action:'index'}, method: "get") do %>
<%=label_tag(:search, "Search for:") %>
<%=text_field_tag(:text) %>
<%=label_tag(:show, "Show for:") %>
<%=text_field_tag(:show) %>
<%= submit_tag("GO") %>
<% end %>
我對顯示結果
<%= will_paginate @tweets %>
<% @tweets.each do |tweets| %>
<ul>
<li><%= tweets.id %></li>
<li><%= tweets.tweet_created_at %></li>
<li><%= tweets.tweet_text %></li>
<li><%= tweets.user_id %></li>
<li><%= tweets.user_name %></li>
<li><%= tweets.user_loc %></li>
<li><%= tweets.user_img %></li>
<li><%= tweets.longitude %></li>
<li><%= tweets.latitude %></li>
<li><%= tweets.place %></li>
<li><%= tweets.country %></li>
</ul>
<% end %>
因爲我手動創建我應該在app/assets/javascripts
文件夾中創建一個名爲tweets.js
文件,最終意見,如果它我應該如何在意見中提供它。請幫助