codeigniter后台input->post()无法去axios的json格式的值

用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()无法去axios的json格式的值)