JavaScript-WeChat public number, the front desk to the background to initiate an AJAX request, the background can not get sent over the value is what??
Source: Internet
Author: User
KeywordsWeChat public number Phpjavascript
Ecshop Backstage:
Public number Front Desk:
try{ function getData(method,path,searchStr,dataType,fn){ var xhr=new XMLHttpRequest(); method=method.toUpperCase(); xhr.open(method.toLowerCase(),(method==='POST') ? path : path+'?'+searchStr,true); if (method==='POST'){ xhr.setRequestHeader('content-type','application/x-www-form-urlencoded'); } xhr.send((method==='POST') ? searchStr : null); xhr.onreadystatechange=function(){ if (this.readyState===4 && this.status===200){ var data=this.responseText; alert('fanyingshuju: '+data); } } } getData('GET','goods.php','act=price&id=' + goodsId + '&attr=' + attr + '&number=' + qty, changePriceResponse); }catch(err){ alert('error: '+err); }
Background:
die('发起的请求: '.$_REQUEST['act']);
This place is always getting no value, what the hell is going on??
Reply content:
Ecshop Backstage: Public number Front Desk:
try{ function getData(method,path,searchStr,dataType,fn){ var xhr=new XMLHttpRequest(); method=method.toUpperCase(); xhr.open(method.toLowerCase(),(method==='POST') ? path : path+'?'+searchStr,true); if (method==='POST'){ xhr.setRequestHeader('content-type','application/x-www-form-urlencoded'); } xhr.send((method==='POST') ? searchStr : null); xhr.onreadystatechange=function(){ if (this.readyState===4 && this.status===200){ var data=this.responseText; alert('fanyingshuju: '+data); } } } getData('GET','goods.php','act=price&id=' + goodsId + '&attr=' + attr + '&number=' + qty, changePriceResponse); }catch(err){ alert('error: '+err); }
Background:
die('发起的请求: '.$_REQUEST['act']);
This place is always getting no value, what the hell is going on??
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.