var params = $("form").serialize(); $.ajax({ type:"POST", url:"www.xxxxxx.com", data:params, dataType: "json", success:function(data){ var backdata = "您提交的姓名为:" + data.name; for(var i = 0; i<data.posts.length;i++) { alert(data.posts[i].id + data.posts[i].title); break; } }, error:function(XMLHttpRequest, textStatus){ if(XMLHttpRequest.status==500){ var result = eval("("+XMLHttpRequest.responseText+")"); alert(result.exception.message); } } });
wordpress获取文章
<?php global $wpdb; if(!$_POST) { exit; } $cat = htmlspecialchars(trim($_POST["cat"])); $limit = htmlspecialchars(trim($_POST["limit"])); $count = htmlspecialchars(trim($_POST["count"])); $args = array('numberposts' => $count, 'offset'=> $limit, 'category' => get_category_by_slug($cat)->term_id,'post_status' => 'publish'); $posts = get_posts($args); $ary = array('result'=>count($posts),'posts'=>array()); foreach( $posts as $post ) { array_push($ary["posts"],array('id'=>$post->ID,'title'=>$post->post_title)); } echo json_encode($ary); exit; ?>
作者:黄聪
出处:http://www.cnblogs.com/huangcong/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
出处:http://www.cnblogs.com/huangcong/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。