我有一个json文件{ Error: read ECONNRESET
at _errnoException (util.js:992:11)
at TCP.onread (net.js:618:25)
code: 'ECONNRESET',
errno: 'ECONNRESET',
syscall: 'read',
isHandledByNodeCubrid: true }
。
如何将其加载到myfile.json
data:myfile
更新。 json文件包含以下内容
$(function() {
var myfile = $.getJSON("/myfile.json", function(data){
});
$("#tags").tags().autofill({
data:myfile <--- load it here--->
});
});
我想要的是这样加载数据
["Mystic-VEN001","D&D-VEN002","Wall-Mart-VEN003"]
答案 0 :(得分:1)
男人。我认为您需要使用以下内容:
$(document).ready(function () {
$.getJSON('youjsonfile.json', function(data){
console.log(data);
});
});