1
當iOS位置不被用戶允許時,我可以在哪裏使用getImage API找到文件對象?當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模式?