curl访问没问题,但是JS里面会这样。貌似POST跨域是个老大难的问题,我看list这个API只支持POST,那要怎么解决:
Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
万分感谢!
代码如下:
$.ajax({
url: "http://rsf.qbox.me/list?bucket=name&prefix=photos/",
dataType: "json",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"Authorization": "QBox *token*"
},
error: function(jqXHR, textStatus, errorThrown) {
alert("some thing get error?");
},
success: function(data, textStatus, jqXHR) {
alert("perfect");
}
});
dataType: "jsonp"