我已下载Sample Project进行文件上传和下载,但它不适用于ios和android的文件下载。该错误是否还在继续?如果没有,你可以共享图片下载示例代码的工作代码吗?
答案 0 :(得分:1)
您可以使用以下代码进行文件下载。它对我来说也很好。您也可以从guides获取示例代码。
var webClientDownload = new SMF.Net.WebClient({
url : "http://services.smartface.io/File/Download/javascript.js",
httpMethod : "GET",
autoFileSave : true,
onSyndicationSuccess : function (e) {
alert("downloaded Javascript.js");
},
onServerError : function (e) {
alert("An error occured");
},
responseHandling : SMF.Net.ResponseHandling.forceFile
});
function Page1_cntDownload_OnPressed(e) {
webClientDownload.run();
}