關於php後端與js前端互動問題

科技小能手發表於2017-11-12
  1. 通過ajax穿引數

  2. $(function(){


  3. $(“.tab #det”).click(function (){

  4. var url=”./doAdminAction.php”;

  5. $.ajax({

  6. type : “GET”,

  7.         url : url,

  8.         async:true,

  9.         data:{`cid`:$(this).attr(“name”)},

  10.         //data : {`pName`:pName,`cid`:cid,`pSn`:pSn,`pName`:pName,`mPrice`:mPrice,`iPrice`:iPrice,`pDesc`:pDesc,`pubTime`:pubTime,`pubTime`:pubTime,`isShow`:isShow,`isHot`:isHot},  

  11.         dataType: `json`,

  12.         success : function(response) {//返回資料根據結果進行相應的處理 

  13.          //var jsonText=result.parseJSON();

  14.          alert(response.pDesc);

  15.         },

  16.         error : function(result){

  17.          console.log(`error`);

  18.         }

  19. }); 


  20. });

  21. });

  22. 3.php後端獲取引數後進行資料庫查詢,將查詢結果進行輸出,在通過json_encode($value,JSON_UNESCAPED_UNICODE)進行轉換為json傳輸,其中之前遇到的坑是utf-8轉碼問題,後來發現使用JSON_UNESCAPED_UNICODE可以很好的解決


本文轉自 水滴的歷程 51CTO部落格,原文連結:http://blog.51cto.com/12390959/1964252


相關文章