Home  >  Article  >  Backend Development  >  html中文件跨域提交的有关问题

html中文件跨域提交的有关问题

WBOY
WBOYOriginal
2016-06-13 12:18:44800browse

html中文件跨域提交的问题
模拟一下情况:
我的网址是本地localhost

网址1. http://sina.php/log.api提供了一个接口,比如说http://sina.php/log.api?x=version&key=2;类似于这样。向该网址上传我的文件,form提交
form action="http://sina.php/log.api"  type="get" 
/*下面是一些列的隐藏项目,以及file控件*/。

提交完成后,页面跳转到http://sina.php/log.api页面,该页面的输出格式是application/json。数据比如说是{"A":123},我就想获得A的值,但是不让页面跳转。

如何实现让页面不跳转达到文件上传?

我查了一下内容:
1. ajax不能提交文件,所以类似于getJSON或者getScript都不能达到效果;
2. 想类似于iframe来模拟,但是通过父窗口不能访问iframe.
3. 想通过类似于插件uploadify实现上传,但是还是404,跨域,

请大家指教?
------解决思路----------------------
你这个需求使用iframe就可以解决了。
关于iframe跨域可以参考我之前写的:http://blog.csdn.net/fdipzone/article/details/17619673#t1
------解决思路----------------------
点击提交时可以调用curl去请求那个接口,或者使用soap来访问
------解决思路----------------------
楼主,jquery有一个异步上传的框架,你看能不能帮到你。
------解决思路----------------------
你沒看明白我的例子嗎?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn