weiphp4.0 html ajax post请求的使用

网友投稿 276 2022-08-26

weiphp4.0 html ajax post请求的使用

感想

我的html代码为:

javascript代码为:

var btn1= document.getElementById("btn1"); var idValue = "{$info.id}";// 提交的URLvar postUrl = "{: U('check', ['wpid' => WPID])}";var target_url="{:U('singleSurvey','id='.$info[id])}";btn1.onclick = function(){ $.ajax({ type: "POST", url: postUrl, data: {id:idValue}, success: function(data_return){ data=eval("("+data_return+")"); //这里解析json的时候有时候要用这种操作 // alert(ajaxobj['status']); if(data.status == 1) { / alert(data.msg); // window.close(); window.location.href =target_url; // window.reload(); } else if(data.status == 0) { alert(data.msg); window.reload(); } } }); }

注意:

假设返回的json数据里有status及info2个属性 有时候可以直接ajaxobj.status或者ajaxobj["status"]去访问 但有时候,却要通过eval()或者 $.parsejson();才可以通过ajaxobj.status访问,而且这种情况下,需要是complete而不是success ajaxobj=eval("("+data+")");

详情,请见我的参考文献第二条

controller.class.php的代码为:

/** * 在index页面检查,该用户所属院系是否合法 */ function check(){ if(IS_POST) { // 问卷id $survey_id = I('post.id'); // jsonReturn(0, $survey_id, null); $uid = get_uid_by_openid(); $this->checkDepartment($uid,$survey_id); jsonReturn(1, '调研开始', null); } }

参考文献

[1].jQuery简单的Ajax调用示例​

[2].Jquery ajax方法解析返回的json数据.​

[3].使用onclick跳转到其他页面/跳转到指定url​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:国足热身1比1平亚泰,刘洋解围时自摆乌龙!(国足亚泰热身赛)
下一篇:[leetcode] 486. Predict the Winner
相关文章

 发表评论

暂时没有评论,来抢沙发吧~