gpt4 book ai didi

javascript - virabyan/jquery-提及如何检查ajax请求响应

转载 作者:行者123 更新时间:2023-11-29 17:56:43 24 4
gpt4 key购买 nike

我在我的项目中使用 ivirabyan/jquery-mentions。我可以做 ajax 请求,但问题是我如何使用响应

$('textarea.mentions').mentionsInput({
source: function( request, response ) {

$.ajax({
url: rootPath() + "user/tagFriends/" + request.term,
type: "GET",
dataType: "json",

success: function(data){
alert(data);
// found data here
}
});
},
showAtCaret: true

});

提前致谢。

最佳答案

你可以试试这段代码,它可能有效

$('textarea.mentions').mentionsInput({
source: function( request, response ) {

$.ajax({
url: rootPath() + "user/tagFriends/" + request.term,
type: "GET",
dataType: "json",

success: function(data){
response(data);
// Just add this line
}
});
},
showAtCaret: true
});

关于javascript - virabyan/jquery-提及如何检查ajax请求响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38475014/

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