1***@163.com
1***@163.com
  • 发布:2020-11-12 10:00
  • 更新:2020-11-16 15:44
  • 阅读:1277

浏览器 andorid 访问均无问题 xhr:{"readyState":0,"responseText":"","status":0,"statusText":"error"}

分类:MUI

ios切换为UIwebview就可以
默认的方式 不可以报
xhr:{"readyState":0,"responseText":"","status":0,"statusText":"error"}

$.ajax({  
                                    url: zfyurl + "/third/api/file/downfile",  
                                    data: {  
                                        'downloadUrl': zfyurl +'/admin/api/center/attach/download?id=' + e  
                                    },  
                                    type: "get",  
                                    dataType: 'json',  
                                    success: res => {  
                                        // this.urlss = res.data  
                                        console.log('haha' + JSON.stringify(res))  
                                        // console.log('mounted'+this.urlss)  
                                        mui.openWindow({  
                                            id: "./fileView.html?url=" + res.data,  
                                            url: "./fileView.html?url=" + res.data,  
                                            styles: {  
                                                "render": "always",  
                                                "popGesture": "hide",  
                                                "bounce": "vertical",  

                                            }  
                                        })  
                                    },  
                                    error: function(xhr, type, errorThrown) {  
                                        //异常处理;  
                                        console.log('xhr:' + JSON.stringify(xhr));  
                                        console.log('errorThrown:' + errorThrown);  
                                        console.log('type:' + type);  
                                    }  
                            })
2020-11-12 10:00 负责人:无 分享
已邀请:
全栈工程师

全栈工程师 - 精通mui、uniapp,承接相关项目外包,解决各种疑难问题。有任何问题可以随时联系,QQ:419761282

跨域了

  • 1***@163.com (作者)

    这个问题解决 谢谢回复

    2020-11-16 15:42

1***@163.com

1***@163.com (作者) - ssddd

解决方案  
mui.get(zfyurl + '/third/api/file/fileToHtml', {  
            'downloadUrl': zfyurl + '/admin/api/center/attach/download?id=' + e,  
            'convertType': convertType  
        },  
        function(res) {  
            // this.urlss = res.data  
            console.log('haha' + JSON.stringify(res))  
            // console.log('mounted'+this.urlss)  
            if (res.result == 0) {  
                mui.openWindow({  
                    id: "./fileView.html?url=" + res.data,  
                    url: "./fileView.html?url=" + res.data,  
                    styles: {  
                        "render": "always",  
                        "popGesture": "hide",  
                        "bounce": "vertical",  
                    }  
                })  
            } else {  
                mui.toast("该文件暂不支持查看")  
            }  
        }, 'json'  
    );

该问题目前已经被锁定, 无法添加新回复