php - Jquery Ajax Post type not working with zend framework IE 7/8 -
i facing weird problem in ie8/7 (as always), time has came up-with zend framework.. below have explained ..
problem,
when using jquery ajax method in zend framework 1.x below , if use 'type: 'post'
zend controller not detect parameter values is, instead of displaying blank..
for example in zend controller
`echo $this->_request->getparam('adata');` //echo nothing
but if use type : 'get' parameters display fine in zend controller.
echo $this->_request->getparam('adata'); //echoing parameter values $.ajax({ type: 'get', datatype: 'json', url: "/xhr_process/commentsave/", data: adata, success:function(aresponse){ console.log(aresponse); } });
this coming in ie 8/7 other browsers working fine
appreciate thoughts !!
update
i have set cache false not success
console.log(adata); object { scommenttext="wewewewew", icomponent="1"}
update 2
we using ntml authenticate
"you cannot post data mixed ntlm , non-ntlm authenticated web sites. microsoft internet explorer requires ntlm authentication visits website after visit 1 ntlm authenticated folder of website."
Comments
Post a Comment