gpt4 book ai didi

Javascript Typeahead 正确设置 JSON

转载 作者:行者123 更新时间:2023-11-28 07:11:20 24 4
gpt4 key购买 nike

我正在尝试让它发挥作用:

http://www.tutorialrepublic.com/codelab.php?topic=bootstrap&file=typeahead-with-external-dataset

但是我似乎没有正确编写 JSON,我已经成功地完成了:

http://www.tutorialrepublic.com/codelab.php?topic=bootstrap&file=typeahead-with-local-dataset

但不是 JSON 格式(我不得不说我是 JSON 新手,但已经阅读并尝试了几种方法来执行此操作,但没有成功。)

所以,这是我的 JSON (countries.json),与调用它的 javascript 位于同一文件中。

{"countries": [

{'accounts':'Audi', 'accounts':'BMW', 'accounts':'Bugatti', 'accounts':'Ferrari','accounts': 'Ford'}

]}

这是我的 JavaScript:

$(document).ready(function(){
$('input.typeahead').typeahead({
name: 'accounts',
prefetch: 'countries.json',
limit: 10
});
});

提前谢谢

最佳答案

将您的countries.json内容更改为这样,就可以正常工作了。

['Audi', 'BMW', 'Bugatti', 'Ferrari', 'Ford', 'Lamborghini', 'Mercedes Benz', 'Porsche', 'Rolls-Royce', 'Volkswagen']

似乎预输入将一些结果存储在 localStorage 中,您必须清除 localStorage 以确保其正常工作。 enter image description here

关于Javascript Typeahead 正确设置 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31279544/

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