当我使用带有 jQuery 的语义 UI 搜索时,我遇到了一些问题:
API:使用了 API 操作,但未定义 url 搜索对象 {}
API:没有为 api 事件指定 URL
我的代码:
$('#product_name').keyup(function() {
if($(this).val().length >= 2)
{
$.getJSON('http://localhost/eval/www/validations/add/' + $(this).val() + '?do=findProducts', function(payload) {
var content = payload.products;
$('.ui.search').search({
source: content
});
console.log('Data: ',content);
});
}
});
在内容 a 中有正确的数据,但是有这个错误?你能帮我吗?
谢谢。