我想将 MongoDBfind()
方法生成的所有结果输出到div
via jQuery 的getJSON()
方法中。
文档
{
"_id": ObjectId("34576347347"),
"content": "here is some content",
"field2": {
"subfield1": {
"0": "sf1v0",
"1": "sf1v1",
"2": "sf1v2"
},
"subfield2": "value 2"
},
"field2": "value 3"
}
PHP
<?php
$dbhost = 'username:password@127.x.xx.x:27017/';
$dbname = 'my_database';
$m = new MongoClient("mongodb://$dbhost");
$db = $m->$dbname;
// specify the collection
$collection = $db->myCollection;
// define the query
$query = $collection->find(array("field2.subfield2" => "value 2"));
foreach($query as $result) {
echo $result['field2'] . " - " . $result['content'] . "<br>";
}
?>
直接访问 PHP 文件时,它会显示:
value 3 - here is some content // values from the first document
value 3 - here is some content // values from the second document
下面是我尝试div
通过 jQuery 的getJSON()
方法获得相同的输出。
jQuery
$.getJSON("http://path/to/file.php", {cid: href, format: 'json'}, function(results){
$("#my_div").html(results);
});
我尝试过的其他事情
使用iterator_to_array()
功能:
PHP
// define the query
$query = $collection->find(array("field2.subfield2" => "value 2"));
echo json_encode(iterator_to_array($query, false));
结果
div 的内容变为空 div 即:
<div id="my_div"></div>
以下得到结果:
PHP
// define the query
$query = $collection->find(array("field2.subfield2" => "value 2"));
echo json_encode(iterator_to_array($query, false));
jQuery
$("#my_div").html(results[0].field2 + " - " + results[0].content + "<br>" + results[1].field2 + " - " + results[1].content);
但它不是一个可扩展/灵活的解决方案。
我在想我需要使用 jQuery.each()
和.append()
方法,以便:
- 对于数组中的每个 Document
- 将其内容附加到 div
但我不知道该怎么做,这就是我尝试过的:
$.getJSON("http://path/to/file.php", {cid: href, format: 'json'}, function(results){
$("#my_div").html("");
$.each(results, function(){
$("#my_div").append(results.field2 + " - " + results.content + "<br>");
});
});
它正在输出:
undefined - undefined
undefined - undefined