|
bex52.7 var param = {
param1 : 'beijing',
param2 : 1
};
param = JSON.stringify(param);
var callback = function(xhr, ts){
if(justep.Request.isSuccess(xhr)) alert('ok');
else alert('error');
};
justep.Request.<FONT style="BACKGROUND-COLOR: #3399ff" color=#ffffff>sendHttpRequest</FONT>(
justep.Request.setBizParams(justep.Request.convertURL('/OA/test.j')),
param,
"application/json",
null,
null,
null,
null,
true,
callback);
这个请求.j文件 .j如何获取参数?
|
|