1. 程式人生 > >[jQuery]解決php使用json_encode在前端返回字串的問題

[jQuery]解決php使用json_encode在前端返回字串的問題

$.post('/home/?r=login/doLogin',{user:user,passwd:passwd},function(res){})
解決方法
$.post新增第四個引數
$.post('/home/?r=login/doLogin',{user:user,passwd:passwd},function(res){},'json')