使用此插件:https://github.com/nicolasbize/magicsuggest
我正在尝试加载json文件,但是遇到了一些麻烦。 如果我尝试这样的结构:
$('#').magicSuggest({
data: 'cities.json',
ajaxConfig: {
xhrFields: {
withCredentials: true
}
}
});
收到错误:
POST http://...../cities.json 405 (Method Not Allowed)
Uncaught Could not reach server
当我改变时:
ajaxConfig: { method: 'GET' }
并尝试将一些字母放入输入字段时出现此类错误:
Uncaught TypeError: Cannot read property 'toLowerCase' of undefined
我该如何解决这个问题?