问题here中记录了此问题,但尚未得到回复。
文档说下载允许/拒绝权限函数获取userId和fileObj但是当我尝试这个时,userId只是一个值false
。
UserImages.deny({
download: function(userId, fileObj) {
// use userId to determine if download should be allowed.
console.log(userId); // <=== This for some reason always prints `false` even when the user is logged in
return false;
}
});
看看这个问题,这可能是一个错误,但我无法证实。