我正在使用blueimp插件上传文件。它在本地服务器上工作但是当我尝试使用不同的域文件时,它不会在那里保存。请帮助我做我必须做的事情。我写了以下代码
$('#fileupload').fileupload({
// Uncomment the following to send cross-domain cookies:
xhrFields: {withCredentials: true},
url: 'http://192.168.1.205/EncoderService/API/Default.aspx'
});
// Enable iframe cross-domain access via redirect option:
$('#fileupload').fileupload(
'option',
'redirect',
window.location.href.replace(
/\/[^\/]*$/,
'/cors/result.html?%s'
)
);
是否需要在服务器端编写代码?
答案 0 :(得分:1)
当我设置WithCrentials时:false 它对我有用。