我的代码看起来像:
if ( $query->have_posts() ) {
$j = 1;
while ( $query->have_posts() ) {
$query->the_post();
$bcData[] = array(
'title'=>get_the_title(),
);
$j++;
}
echo json_encode($bcData);
} else {
// no posts found
}
$bcData数组输出(使用print_r):
Array (
[0] => Array ( [title] => Pink Nail Shop 9 )
[1] => Array ( [title] => Pink Nail Shop 8 )
)
当我将这个数组编码为json(使用json_encode)时,新创建的json看起来像:
[{"title":"Pink Nail Shop 9"},{"title":"Pink Nail Shop 8"}]
虽然我需要像这样的json:
[{"shop":{"title":"Pink Nail Shop 9"}},{"shop":{"title":"Pink Nail Shop 8"}}]
希望这是有道理的,因为我已经努力表达我想要完成的事情.
谢谢!
解决方法:
if ( $query->have_posts() )
{
$bcData = array();
$j = 1;
while ( $query->have_posts() )
{
$query->the_post();
$bcData[] = array(
'shop' => array(
'title'=>get_the_title()
)
);
$j++;
}
echo json_encode($bcData);
} else {
// no posts found
}