-1

这是我的html,

<html>
<head> 
<script src="js/jquery.js"></script>
</head>

<body> 
<input type="text" name="query" id="queryBox">
<button id="load_basic" value = "button">search</button><br/>

<div id="result"></div>
</body>

<script>

    $.ajaxSetup ({
        cache: false
    });
    var ajax_load = "<img src='images/ajax-loader.gif' alt='loading...' />";

    $("#load_basic").click(function(){
    var query = $("#queryBox").val();
    var loadUrl = "http://localhost:8983/solr/collection1/select?q=" + query +"&fl=title&wt=php&indent=true";
    $("#result").html(ajax_load).load(loadUrl);

    });

</script>

</html>

在进行查询时,结果 div 的值将是 json,示例结果如下所示,

   {
   "responseHeader":{
      "status":0,
      "QTime":58,
      "params":{
         "fl":"title",
         "indent":"true",
         "q":"gizmodo",
         "_":"1383358368484",
         "wt":"json"
      }
   },
   "response":{
      "numFound":4,
      "start":0,
      "docs":[
         {
            "title":"AACS encryption key controversy"
         },
         {
            "title":"LOL"
         },
         {
            "title":"MythBusters"
         },
         {
            "title":"Anonymous (group)"
         }
      ]
   }
}

如何解析这个json并单独获取title中的值?

<?php
$query = "http://localhost:8983/solr/collection1/select?q=" .  $_GET['q'] ."&fl=title&wt=json&indent=true";
$response = file_get_contents($query);
echo $response;
?>
4

1 回答 1

0

在 JS 中,要解析 div 中的 JSON,您可以这样做

var myJSON=jQuery.parseJSON(jQuery('#result').text());
var title=myJSON.response.docs[0].title;
console.log(title);
于 2013-11-02T03:10:28.970 回答