ここに私の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を解析して、タイトルだけで値を取得する方法は?
<?php
$query = "http://localhost:8983/solr/collection1/select?q=" . $_GET['q'] ."&fl=title&wt=json&indent=true";
$response = file_get_contents($query);
echo $response;
?>