如何从url解析json?

时间:2014-04-19 12:27:39

标签: javascript json parsing cordova

大家好我正在使用的应用程序,我需要使用java脚本解析json来解析json。我谷歌它很多我尝试差不多两个2小时3但没有得到任何正确的答案,我正在寻找.Below代码是我尝试。

我的代码是:

<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"> </script>
<script>

$(function() {

var entries = [];
var dmJSON = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20xml%20where%20url%3D%27http%3A%2F%2Fcallme.myshareus.nl%2FAPI%2FgetGroups.php%3FAPIkey%3Dte7gRRT8Ut2VYW%26InitiatorId%3D0000001%26AccountId%3D00550%26Role%3D1%0A%27&format=json&diagnostics=true?callback=?";
$.getJSON( dmJSON, function(data) {
   $.each(data.entity, function(i, f) {
      var tblRow = "<tr>" + "<td>" + f.content + "</td>" +  "</tr>"
       $(tblRow).appendTo("#entrydata tbody");
 });

});
});
</script>
</head>

<body>

<div class="wrapper">
<div class="profile">
<table id= "entrydata" border="1">
<thead>
        <th>ID</th>
        <th>Name</th>

    </thead>
  <tbody>

   </tbody>
</table>

</div>
</div>

</body>

</html>

我没有得到任何回应。

1 个答案:

答案 0 :(得分:0)

在网址末尾:

?callback=?

应该是:

&callback=?

在网址中,?用于将参数与路径名分开,&用于将参数彼此分开。