美文网首页
codeigniter后台input->post()无法去axi

codeigniter后台input->post()无法去axi

作者: 呱啦哒358 | 来源:发表于2017-09-10 15:32 被阅读0次

用axios的json方式做post时,ci用$this->input->post('tel')无法取值

解决办法:

js:

axios({

method:'post',

url          : site_url + '/Welcome/login',

data        : { tel:'13812341234',pwd:'mimimimi' }

}

).then(function (result) {

if(result.data.success) {

window.location.href = site_url + "/Main";

} else {

alert(result.data.message);

}

}).catch(function (error) {

console.log(error);

});

Ci:

在控制器的Welcome的login方法中:

$postJson = json_decode($this->input->raw_input_stream,true);

用 $postJson['tel'] 就是前台传过来的值了

相关文章

网友评论

      本文标题:codeigniter后台input->post()无法去axi

      本文链接:https://www.haomeiwen.com/subject/shxtsxtx.html