Ionic 如何使用 httpclient 获取 599 状态以二进制形式上传文件
您好,我正在使用 httpclient 发送 blob 文件并获取 599 状态代码,请帮助
this.http.post("url",blobfile,{headers:'content-type':'image/jpeg'}).subscribe(r=>{
console.log(r)
})
获取 599 错误,这在 webview 上工作正常,但在本机 android 设备上不起作用,因为我正在使用 ionic-native-http-connection-backend 并将其包含在app.module.ts
providers:[{ provide: HttpBackend, useClass: NativeHttpFallback, deps: [Platform, NativeHttpBackend, HttpXhrBackend] }]
我正在使用 ionic 6 谁能帮我解决这个问题?
Hi i am sending blob file to with httpclient and getting 599 status code please help
this.http.post("url",blobfile,{headers:'content-type':'image/jpeg'}).subscribe(r=>{
console.log(r)
})
getting 599 error this works fine on webview but doesn't work on native android device as i am using ionic-native-http-connection-backend and included this in app.module.ts
providers:[{ provide: HttpBackend, useClass: NativeHttpFallback, deps: [Platform, NativeHttpBackend, HttpXhrBackend] }]
i am using ionic 6 can anyone help me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 app.module.ts 中使用此解决方案解决了
599 问题
use this in app.module.ts resolves the issue
this resolves 599 issue