我正在使用Roxyfileman处理将图像上传到我的网站(asp.net MVC)。 当我尝试选择上载的图像时,Fileman将False返回到回调函数,那么我会出错吗?
$('#image-picker').click(function () {
var margin = 100;
var top = margin;
var left = margin;
var height = jQuery(window).height() - margin * 2;
var width = jQuery(window).width() - margin * 2;
window.open('/fileman/index.html?integration=customcallback&callback=ImageCallback',
'fileBrowser', 'top=' + top + ',left=' + left + ',width=' + width + ',height=' + height + ',menubar=0,scrollbars=0,toolbar=0');
});
function ImageCallback(file) {
console.log(file); // I got file == False
}