您好,登錄后才能下訂單哦!
這期內(nèi)容當中小編將會給大家?guī)碛嘘PPHP $_POST提交表單中文亂碼怎么辦,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
PHP $_POST提交表單亂碼解決方法是在代碼頭部加入“echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">';”即可解決提交數(shù)據(jù)亂碼問題。
問題詳情:
在提交頁面 設置頭<meta charset="UTF-8">
,并確保編輯器保存的也是utf-8
顯示頁面也加上html
頭部。
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">';
解決方案:
前端調(diào)用接口,后端接收數(shù)據(jù)保存數(shù)據(jù)庫,注意contentType
一定這樣設置:
if(isSuccess){ var token = sessionStorage.token; $.ajax({ type:'post', url:'../../api/container/'+token+'/addContainerDamageReport', contentType:'application/x-www-form-urlencoded;charset=utf-8', data:{'containerName':'HJSY'+containerName,'username':username,'description':descript,'damageTime':damageTime ,'reportTime':reportTime,'damageLevel':badLevel,'damageType':badType}, cache:false, dataType:'json', success:function(data){ $('#submit').attr('data-dismiss',"modal"); console.log(data) } }) }
后端接受:頁面的編碼格式utf-8,SQL server數(shù)據(jù)庫是gbk,注意轉(zhuǎn)換,否則插入進去是亂碼。
上述就是小編為大家分享的PHP $_POST提交表單中文亂碼怎么辦了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。