|

楼主 |
发表于 2016-3-25 11:42:37
|
显示全部楼层
我们用 debugger 前端定位 时候,发现 baas js 文件被编译 到 一个临时 js 文件,BASE_URL还是原来的/baas。
后来我们就自己 重新封装 baas js 的方法
Model.prototype.sendRequest = function(options){
options.BASE_URL = "http://192.168.168.244:8090";
$.ajax({
"type" : options.type ? options.type : "post",
"async" : options.async ? options.async : false,
"dataType" : "json",
//"contentType" : "application/json",
"url" : options.BASE_URL + options.url,//+"/"+options.action,
"data" : JSON.stringify(options.params),
"complete" : function(xhr) {
if (xhr.readyState == 4 && xhr.status == 200) {
if (options.success) {
options.success.call(this, xhr.responseJSON, xhr);
}
}else{
var msg = $(xhr.responseText).filter("h1:first").text() || xhr.statusText;
if (options.error) {
options.error.call(this, msg, xhr);
}else{
Util.hint(msg, {
"type" : "danger",
delay : 10000
});
}
}
}
});
};
就可以使用了。 |
|