我想從服務器拉下json並將其解析爲Javascript對象。這裏是我的JSON的樣子:從服務器請求JSON並使用Javascript解析
{
"tour1": [
{
"title": "building1",
"description": "Tour of building1",
"image": "Icon.png",
"video": "tour.mp4",
"length": "0.00",
"version": "1.0",
"timestamp": "1111111111"
}
]
}
這裏是requst到服務器:
<!DOCTYPE html>
<html>
<body>
<h2>Parse JSON from Server</h2>
<p id="demo"></p>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"> </script>
<script>
$.ajax({
url: "mysite.com/videos/tour.json";
var j = [];
$.ajax({
type: 'GET',
url: url,
dataType: 'json',
});
window.alert(j.tour1[0].title);
</script>
</body>
</html>
我無法理解爲什麼它不工作。我是新來的JavaScript。我很感謝這個問題的任何幫助。
檢查[ajax](http://api.jquery.com/jquery.ajax/)語法 – Tushar
您有語法錯誤。我建議你使用Visual Studio這樣的東西。 – CoderPi
請檢查答案bellow upvote/downvote,評論,選擇正確的答案。 –