gpt4 book ai didi

javascript - 无法从 Controller 检索数据

转载 作者:行者123 更新时间:2023-11-30 17:39:13 25 4
gpt4 key购买 nike

这是我的 javascript 代码:

<script> 
$(function() {

$( "#name" ).autocomplete({
source: "http://localhost:3000/shirts/autocomplete",
autoFocus: false,
minLength: 0,
select: function(event,ui){
document.getElementById("name").value = ui.item.value;
document.getElementById("autoc").submit();
var myname = $("#name").val();
$.ajax({
url:"http://localhost:3000/shirts/show",
type:"GET",
dataType:"json",
data: ??
});
}
});
});

</script>

我应该如何设置我的数据字段才能为其设置变量“myname”值?

最佳答案

$.ajax({
url:"http://localhost:3000/shirts/show",
type:"GET",
dataType:"json",
data: { q: myname }
});

现在在您的 Controller 中,您可以读取q 参数的值。

关于javascript - 无法从 Controller 检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21402772/

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