我正在努力处理json_encode的输出。我试图通过将所有内容存储在每天更新一次的json文件并在需要时调用它来加速我们的大型下拉导航菜单。
我正在使用json_encode生成json,但它似乎将所有内容循环到其他不必要的数组中,我无法弄清楚如何防止这种情况。
我甚至尝试摆弄str_replace但是没有成功生成有效的json(尽管显然这在任何情况下都不是真正的长期解决方案)。我还试图弄清楚我需要进入嵌套数组的“每个”组合,但是没有找到正确的组合。
下面是我最终的json(我减少了条目的数量,使其更容易看到,格式是相同的......只是在每个电影,游戏等内有更多的项目)
[
[
"Film",
[
{
"title": "13 Awkward Moments That Must Have Happened After The End Of Famous Movies",
"link": "http:\/\/whatculture.com\/film\/13-awkward-moments-that-must-have-happened-after-the-end-of-famous-movies.php",
"image": [
"http:\/\/cdn3.whatculture.com\/wp-content\/uploads\/2013\/08\/HP-100x60.jpg",
100,
60,
true
]
}
]
],
[
"TV",
[
{
"title": "10 Awesome TV Twists You Never Saw Coming",
"link": "http:\/\/whatculture.com\/tv\/10-awesome-tv-twists-you-never-saw-coming.php",
"image": [
"http:\/\/cdn3.whatculture.com\/wp-content\/uploads\/2013\/08\/lost-locke-100x60.jpg",
100,
60,
true
]
}
]
],
[
"Gaming",
[
{
"title": "WWE 2K14: Every Possible Classic Match",
"link": "http:\/\/whatculture.com\/gaming\/wwe-2k14-every-possible-classic-match.php",
"image": [
"http:\/\/cdn3.whatculture.com\/wp-content\/uploads\/2013\/08\/444-100x60.jpg",
100,
60,
true
]
}
]
]
这是我用来生成代码的脚本:
为了完整,我已经包含了所有内容。下面的很多内容只是用于提取相关数据的Wordpress查询:
$cats = array("Film","TV","Gaming","Sport","Music");
function filter_where($where = '') {
$where .= " AND post_date > '" . date('Y-m-d', strtotime('-3 days')) . "'";
return $where;
}
add_filter('posts_where', 'filter_where');
foreach($cats as $cat) {
$the_query = array(
'numberposts' => 5,
'category_name' => $cat,
'meta_key' => "visitcount",
'orderby' => "meta_value_num",
'suppress_filters' => false );
$special_query_results = get_posts($the_query);
foreach( $special_query_results as $post ) {
setup_postdata($post);
$myposts[] = array('title'=> html_entity_decode(get_the_title()),'link'=>get_permalink(get_the_ID()),'image'=>wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), 'smallthumb' ));
}
$pop_posts[] = array($cat,$myposts);
unset($myposts);
} // foreach cats as cat1000
wp_reset_postdata();
remove_filter('posts_where', 'filter_where');
$json_pop = json_encode($pop_posts,JSON_PRETTY_PRINT);
当用户将鼠标悬停在导航项目上时,我正在使用它将其拉回:
$.getJSON('http://whatculture.com/data/wc6.json', function(popular) {
$.each(popular.Sport, function() {
$('.popularMenu').append("<li><a href="+this.link+"><img src="+this.image[0]+" />"+this.title+"</a></li>");
});
});
答案 0 :(得分:0)
这是一个猜测(请参阅我的评论,需要澄清您认为哪些数组为&#34;不必要&#34;)但对我来说突出的界限是:
$pop_posts[] = array($cat,$myposts);
这可以翻译为&#34;创建一个2元素数组,其第一个成员是$cat
(类别的名称),其第二个成员是$myposts
(一组帖子);将此2元素数组添加为数组$pop_posts
&#34;的最后一个成员。结果是$pop_posts
是一个双元素数组的数组。
也许你想说的是&#34;将关联数组$cat
的键$pop_posts
设置为值$myposts
(一组帖子)&#34;,这将是:
$pop_posts[$cat] = $myposts;
这将使结果结构更简单,因为不是一个2元素数组的数组,你将有一个单独的哈希(PHP关联数组,JS对象),其键是类别,其值是受欢迎的帖子类别。
然而,有两个缺点:
Sport
,因此这可能不是问题。