gpt4 book ai didi

javascript - Jquery TokenInput 未加载结果

转载 作者:行者123 更新时间:2023-12-01 05:16:02 25 4
gpt4 key购买 nike

我有:

$('.titulares').tokenInput("http://localhost/ajax/ajax.php",{
tokenLimit: 1,
queryParam: 'query',
propertyToSearch: 'nome',
resultsLimit: 2,
tokenValue: 'id',
noResultsText: 'Nada',
searchingText: "Procurando...",
hintText: "Buscar titular",
method: 'GET',
onResult(){
alert('a');
}
});

ajax.php JSON 输出:

[  
{
"id":12,
"nome":"Joe Bill"
},
{
"id":13,
"nome":"PJ"
},
{
"id":14,
"nome":"John"
},
{
"id":16,
"nome":"Acme"
},
{
"id":17,
"nome":"Acme2"
},
{
"id":18,
"nome":"Acme3"
}
]

代码显示加载文本,但 JSON 输出未在文本字段中呈现,并且 onResult 未触发

谢谢

最佳答案

您的代码无法工作,因为您编写了错误的语法。如果您修复它,您的代码现在将正常运行。

onResult: function(result){
console.log(result);
}

演示:http://jsbin.com/yimiwumije/edit?html,js,output

关于javascript - Jquery TokenInput 未加载结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49184671/

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