Mashape不给我任何支持,除非它的工作时间,所以我希望你能给我一些答案
我正在尝试通过我的 API 上传文件。
有谁知道为什么 mashape 会产生这种错误?它意味着什么或如何解决或避免它。它不是来自我的服务器。这不是我的 API 永远不会返回的东西。直接向我的 API 发出请求可以正常工作!
[body] => {"message":"Ops, an error occurred (╯°□°)╯"}
[status] => 500 Internal Server Error
[headers] =>
access-control-allow-credentials:true
Connection:keep-alive
Content-Length:54
Content-Type:application/json
Date:Sun, 23 Aug 2015 18:34:27 GMT
Server:Mashape/5.0.6
X-Mashape-Proxy-Response:true
对我来说,它似乎是 Mashapes 代理的问题?
编辑
更多调查表明,这与尺寸有关
var content = "kokokoko".repeat(1200); // Uploading a small file works fine
// var content = "kokokoko".repeat(1300); // Uploading a larger file produce the error above
var fd = new FormData();
fd.append("format", 'ttf');
fd.append("file", new Blob([content]), "filename.ext");
$.ajax({
url: 'https://ofc.p.mashape.com/directConvert/',
headers: {'X-Mashape-Key': 'xxxxx'},
method:"post",
data: fd,
cache: false,
contentType: false,
processData: false,
})
编辑 2
它现在可以工作,但仍然没有解释消息的Ops, an error occurred (╯°□°)╯
含义