当用户不允许 iOS 位置时,我在哪里可以使用 getImage API 找到文件对象?
错误回调是否会有成功的文件对象,如此处所示?
file.getImage( function (file) { /* the success scenario */ , function (file) { /* the error scenario but still has successful file object */ );
或者错误回调是否会同时包含内容和文件对象?
file.getImage( function (file) { /* do success scenario */ , function (content, file) { /* error scenario but has successful file object */ );
这种情况下正确的 API 模式是什么?