|
版本: |
BeX5V3.4 |
小版本号: |
|
|
|
数据库: |
MS SQLServer |
服务器操作系统: |
Windows |
应用服务器: |
Tomcat |
客户端操作系统: |
Windows 其它 |
浏览器: |
其它(帖子中说明) |
|
|
在使用sendBizRequest方法时,我得到返回的值XmlHttpRequest对象,我怎么从这个对象中得到返回的字符串,比如后台返回的是“成功执行了....”;
这里得到XmlHttpRequest对象
var result = biz.Request.sendBizRequest({
"contentType" : "application/json",
"dataType" : "application/json",
"context" : this.getContext(),
"action" : "cghtUniqueUse",
"parameters" : params,
"callback" : function(data) {
},不能通过这里得到,必须要在外面得到
});
alert(result.reponseText);这里要得到请求返回的值,我测试reponseText不能得到值
请求大神指导
|
|