Cordova应用程序发送file://作为Origin标头. 当然,由于应用程序是从文件系统加载的,因此这种行为并不太令人惊讶. 但是,我们的后端正确拒绝了这个来源.参见例如:https://github.com/playfram
当然,由于应用程序是从文件系统加载的,因此这种行为并不太令人惊讶.
但是,我们的后端正确拒绝了这个来源.参见例如:https://github.com/playframework/playframework/issues/5193
This answer建议Cordova应用程序不应该发送文件:// Origin头,这将正常工作:
Cross-domain policy does not apply to PhoneGap (for a variety of reasons, basically because your app is essentially running off the file:// URI on-device).
我们正在使用白名单插件,但这并不妨碍将Origin:file://标头发送到服务器.
如果Cordova根本没有发送Origin标题,那对我们来说是理想的.可以这样配置吗?
如果还不晚,你可以随时切换到 https://github.com/wymsee/cordova-HTTP.