gpt4 book ai didi

javascript - jQuery $.ajax 函数有效,但简写函数如 $.get/$.getJSON 无效——使用 jQuery 1.7.2 和 Grails 2.1 以及 twitter bootstrap

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:26:28 26 4
gpt4 key购买 nike

我的第一个问题。

有人对 ajax 请求使用速记函数有任何问题吗?

这个有效:

('#book').typeahead({
source: function(typeahead, query){
return $.ajax({
url: "/book/autocompleteBooks",
type: "GET",
dataType: "JSON",
data: {queryString: query},
success: function(results){
typeahead.process(results);
}
});
},
property: "title",
onselect: onSelectBook
});

但这两个都不起作用:

('#book').typeahead({
source: function(typeahead, query){
return $.get({
url: "/book/autocompleteBooks",
dataType: "JSON",
data: {queryString: query},
success: function(results){
typeahead.process(results);
}
});
},
property: "title",
onselect: onSelectBook
});

('#book').typeahead({
source: function(typeahead, query){
return $.getJSON({
url: "/book/autocompleteBooks",
data: {queryString: query},
success: function(results){
typeahead.process(results);
}
});
},
property : "title",
onselect: onSelectBook
});

另一件事是用 createLink 替换 url 也不起作用。

url: "/book/autocompleteBooks"

url: "${createLink(controller: 'book', action: 'autocompleteBooks')}"

我宁愿使用速记函数来使代码更易于阅读并且基本上是为了美观:)

最佳答案

$.get() 的结构如下:

$.get(
"/book/autocompleteBooks", // url
{queryString: query}, // data
function(data) { // success
// code
},
'json' // dataType
);

$.getJSON()是:

$.getJSON(
"/book/autocompleteBooks", // url
{queryString: query}, // data
function(results){ // success
// code
}
);

阅读更多关于 $.get() $.getJSON()

关于javascript - jQuery $.ajax 函数有效,但简写函数如 $.get/$.getJSON 无效——使用 jQuery 1.7.2 和 Grails 2.1 以及 twitter bootstrap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12435654/

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