作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将图像从一个域上传到另一个域 (CORS)。
该代码在本地主机上完美运行,但是当我在真实域中尝试时,我不断在开发者控制台上收到此消息:
Invalid request
上传文件.js:
function upload() {
var formData = new FormData();
formData.append('img', $('#profimg')[0].files[0]);
$.ajax({
url : 'https://example2.com/upload.php,
type : 'POST',
data : formData,
cache: false,
contentType: false,
processData: false,
crossDomain: true,
success: function(h) {
alert(h);
}
});
}
上传.php:
<?php
header('Access-Control-Allow-Origin: https://example1.com');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Allow-Headers: Content-Type, Content-Range, Content-Disposition, Content-Description');
require 'c.upload.php';
$tsUpload = new tsUpload();
echo $tsUpload['response']; //It have to respond a message like Uploaded Image or Image cannot Upload, not the message that I receive on the developer console.
我尝试了一切,比如更改 header 、不从 Ajax 函数发送数据、从 https 更改为 http、从头开始编写代码,但我总是收到该消息。
我的问题是什么?难道我做错了什么?谢谢。
最佳答案
如果您收到无效请求
,这意味着无法创建请求,则该错误发生在 http create 之前。$.ajax
有一个错误()
回调,您可以添加它并查看详细错误消息。
购买方式,您发送ajax的页面'url是http或https
关于javascript - 跨域上传图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52846725/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!