gpt4 book ai didi

javascript - 触发 Controller 显示 View

转载 作者:行者123 更新时间:2023-11-28 02:38:16 25 4
gpt4 key购买 nike

我在 View 中有一个使用js的下拉列表,我将所选项目从下拉列表传递到 Controller ,在 Controller 内,我使用下拉列表中的所选项目运行查询以提取一些记录。现在的问题是我无法显示查询结果来查看。基本上我无法触发 Controller 在 View 中显示。非常感谢任何帮助。

这是将数据传递给 Controller ​​的js:

<script type="text/JavaScript">
$(function(){
$('.defined_call').bind('change', function(){
alert($(this).val());
$.ajax({
url: "<%= changeowner_path %>",
data: { my_str: $(this).val() }
});
});
});
</script>

<%= select_tag "dropdown_cases", options_for_select(@ownerlist),{:id=>"defined_Id",:class
=> "defined_call'} %>

这是 Controller :

class ReassignsController < ApplicationController
def changeowner
i=0
$myarr=[]
ownerl = Transaction.owner#declaredin model
@ownerlist=ownerl.collect { |c| [ c, c ] }#make it for dropdown
value=params[:my_str]#return value from dropdown
$value1=value.to_s#make it for owner table
@owner_records=Transaction.where(:owner => $value1)

===> I would like to display to the view?
end
end

这是我正在使用的 View :

<table class="table table-condensed" id="sortTableExample">
<tr>
<th style="text-align:center">Book Name</th>
<th style="text-align:center">Owner</th>

</tr>

<% @owner_records.each do |arr_data| %>
<tr>
<td style="text-align:center"><%= arr_data.book%></td>
<td style="text-align:center"><%= arr_data.owner%></td>
</tr>
<% end %>
</table>

最佳答案

乔,尝试一下:

  $('.defined_call').change(function() {
$.ajax({
url: "<%= changeowner_path %>", type: 'get',
data: { my_str: $(this).val() },
dataType: 'json',
processData: false,
success: function(data) {
if (data == "") {
alert('No Results');
}
else {
var jsonObj = eval( data );
var count = jsonObj.transactions.length;
for (var i = 0; i<count; i=i+1) {
$('#sortTableExample').append('<td style="text-align:center">' + jsonObj.transactions[i].book + '</td><td style="text-align:center">' + jsonObj.transactions[i].owner + '</td>');
}
}
}
});
});

关于javascript - 触发 Controller 显示 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13095167/

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