gpt4 book ai didi

javascript - 跨域上传图片

转载 作者:行者123 更新时间:2023-12-03 00:55:44 27 4
gpt4 key购买 nike

我正在尝试将图像从一个域上传到另一个域 (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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com