我一直在 chromium 上遇到这个错误,但在 Firefox 上却没有,这让我发疯了,因为尽管现在搜索了几个小时,但我还是找不到解决方案。我基本上从服务器获取 JSON,然后想将其插入 DOM。这是我的代码...
function lookup(inputString){
if(inputString.length == 0){ //hide suggestions
$('#suggestions').empty()
.fadeOut();
}
else{ //make an AJAX call
$.ajax({
type: 'GET',
url: '{% url "search.views.search" inputString="xyz" %}'.replace("xyz", inputString.toString()),
dataType: 'json',
success: function(search_results){
suggestions = JSON.parse(JSON.stringify(search_results));
alert(suggestions[0].name);
}
})
}
}