- 注册时间
- 2016-9-7
- 最后登录
- 2024-9-4
- 阅读权限
- 10
- 积分
- 289
- 精华
- 0
- 帖子
- 48
|
jialiang 发表于 2017-6-2 09:54
http://miniui.com/demo/#src=fileupload/fileupload.html
本地测试是可以的,请参照我们的例子,如果还是 ...
我本地上传是这样写的- $.ajaxFileUpload({
-
- // url : 'CashmanPayBatchInput!initUpload.do', //需要链接到服务器地址
- url : url,
- secureuri : false,
- fileElementId : 'iFile', //文件选择框的id属性
- //contentType : 'application/json',
- dataType : 'no', //bug
- success : function(text) //相当于java中try语句块的用法
- {
- var result = mini.decode(text, false);
- //mini.alert(result);
- var dealStatus = result.dealStatus;
- var info = "";
- if (result.exceptionInfo != null) {
- for (var i = 0; i < result.exceptionInfo.length; i++) {
- info = info
- + "\n"
- + result.exceptionInfo[i].exceptionInfo;
- }
- }
- mini.hideMessageBox(messageid);
- if (dealStatus == 2||dealStatus ==3) {
- mini.alert(info);
- } else {
- mini.get("datagrid").setData(result);
- }
-
- },
- error : function(jqXHR, textStatus, errorThrown) //相当于java中catch语句块的用法
- {
- mini.hideMessageBox(messageid);
-
- mini.alert("处理错误: " + textStatus + " 详细内容: " + errorThrown);
- mini.get("iFile").setValue();
- }
- });
复制代码 |
|