用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'] 就是前台传过来的值了
网友评论