我的想法已经用完了,并且在没有任何解决方案的情况下浏览了网络,所以我希望有人能让我摆脱这个烂摊子,因为我真的,真的被卡住了。
我的一条路线通过一组实例变量(@campagnes 和@missions)查询数据库并通过 erb 呈现数据。不用担心,一切正常。
我设置了一个 jQuery 函数,它可以帮助我根据下拉选择器过滤表中的数据。因此,如果用户更改下拉列表中的选定值,jQuery $.ajax 方法会重新加载页面,将选定值传递给“get”路由。
这是我不明白的。调用有效,成功,参数被传递给路由,它们用于从数据库中读取,但所有具有新数据集的实例变量都拒绝在视图中进行评估。相反,仍然使用旧的(在 Ajax 调用之前使用初始 GET 评估的那些),因此该表仍然是旧表。
我需要在我的 Ajax 调用中传递什么才能在视图中再次评估实例变量?
这是我的路线:
get '/admin/mission' do
# load the appropriate js file in template
@js = "mission.js"
# retrieve list of all campagnes, latest on top
@campagnes = Campagne.all :order=>:id.desc
if !params[:campagne]
#puts "camp id retrieved from normal GET"
camp_id = @campagnes[0].id # first campagne in collection is latest
else
#puts "camp id retrieved from ajax call"
camp_id = params[:campagne] # if submitted via Ajax
end
# retrieve list of missions for selected campaign
@missions = Mission.all :campagne_id => camp_id, :order=> :numero.asc
erb :admin_mission , :layout => !request.xhr?
end
我的观点(编辑到重要的东西)
<div id="mission_form">
<form class="cmxform" name="mission" action="/admin/mission" method="post">
<ol>
<li>
<label for="campagne" id="campagne_label" >Choisir une Campagne</label>
<select id="campagne" name="campagne">
<% @campagnes.each do |c| %>
<option value="<%= c.id %>"> <%=h c.nom %> </option>
<% end %>
</select>
</li>
<li>
<label for="numero" id="numero_label" >Numéro</label>
<input type="text" name="numero" id="numero" placeholder="" size="5"/>
<label class="error" for="numero" id="numero_error">Champ obligatoire.</label>
</li>
<li>
<label for="nom" id="nom_label" >Nom de la mission</label>
<input type="text" name="nom" id="nom" placeholder="" size="50"/>
<label class="error" for="nom" id="nom_error">Champ obligatoire.</label>
</li>
<li>
<input type="submit" name="submit" id="submit_btn" class="button" value="Ajouter" />
</li>
</ol>
</fieldset>
</form>
</div>
<table div="table_mission" id="hor-minimalist-a" summary="Main Table">
<!-- Table header -->
<thead>
<tr>
<th scope-"col">Campagne</th>
<th scope="col">Mission</th>
<th scope="col">Briefing</th>
<th scope="col">De-Briefing</th>
</tr>
</thead>
<!-- Table body -->
<tbody>
<% @missions.each do |m| %>
<tr>
<td>
<%=h m.campagne.nom %>
</td>
<td>
#<%=h m.numero %>: <%=h m.nom %>
</td>
<td>
<%=h m.briefing %>
</td>
<td>
<%=h m.debriefing %>
</td>
<td>
<span><a href="/<%= m.id %>">[edit]</a></span>
</td>
<td>
<class="meta"><%= m.created_at.strftime("Created: %m/%d/%Y") %>
</td>
</tr>
<% end %>
</tbody>
</table>
还有我的脚本文件(也进行了编辑以保留重要部分):
$(document).ready (function() {
// hide all error and confirm labels
// refresh mission table if change campagne dropdown
$('#campagne').change(function() {
var inputs = [];
$(':input').each(function () {
inputs.push(this.name + '=' + escape(this.value));
});
$.ajax({
data: inputs.join('&'),
url: '/admin/mission', // couldhave used: this.action if it was a submit...
timeout: 2000,
error: function() {
console.log("Failed to submit"); // remove when going live
},
success: function() { //
$('label#campagne_confirm').show(function() {
console.log("Sucess!");
});
}
});
});