我正在尝试进行表单提交,上传我读取的文件,然后尝试通过回调发回从文件读取的数据。但是,我收到错误
"{success:false,message:"Blocked a frame with origin "http://localhost:####" from accessing a cross- origin frame."}"
因此我的回调永远不会实现,数据永远不会回到表单提交的成功回调。
我不完全确定该错误消息的含义...我不知道从哪里开始。任何帮助将不胜感激。
答案 0 :(得分:1)
您可以按照以下任何步骤操作。
1.Either install your sencha app in the same server as your back end.
2.Use below flag in your browser, but don't do it for production (only for development purpose)
--disable-web-security --allow-file-access-from-files --allow-file-access
3. Use JSONP to access resource outside origin.