我正在使用VS2012,並運行ASP.NET MVC4項目。如何在jQuery中讀取Json文件
我似乎無法得到這個低於火:
$.ajax({
url: "~/xml/JsonTest.json",
type: "GET",
dataType: "json",
success: function (json) {
alert("HI");
}
});
我也嘗試過這種方式,但都無濟於事:
$.getJSON('../xml/JsonTest.json', function (json) {
alert("GET JSON !");
});
難道不知何故沒有找到的目錄結構? 謝謝。 鮑勃
請檢查是否這會有所幫助:http://iviewsource.com/codingtutorials/getting-started-with- javascript-object-notation-json-for-absolute-beginners/ – Roshit