|
版本: |
BeX5V3.5 |
小版本号: |
|
|
|
数据库: |
MySQL |
服务器操作系统: |
Windows |
应用服务器: |
Tomcat |
客户端操作系统: |
android 4.x |
浏览器: |
Chrome |
|
|
打开服务器的文件 ,在手机端是可以打开,但是会下载一个文件到手机上!!!
请问一下,有没有其他的方法,只是打开这个文件,而不会在打开的设备存在这个文档!
如下是代码:
Model.prototype.li1Click = function(event){
this.getHostLocation();//获取服务器ip
var row = event.bindingContext.$object.row;
var papId = row.PAP_ID.value.latestValue;
biz.Request.sendBizRequest({
"context" : this.getContext(),
"dataType" : "application/json",
"action" : "openPapFileAction",
"parameters" : {
pap_id:papId
},
"callback" : function(result) {
var url = IP+require.toUrl("$UI/"+result.response);
justep.Util.hint("正在打开文件,请稍后...");
cordova.plugins.disusered.open(url,function(event){
},function(event){
justep.Util.hint("打开文件出错! |"+ event,{"type":"warning"});
});
}
});
};
|
|