Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的表中有文件列。
该文件代表图像。
文件没问题,我可以将它作为字节数组获取。
我可以获得此图片的直接(网络)链接吗?
getUrl()您可以使用该方法获取文件的URL 。因此,如果imageFile是 a ParseFile,您将通过以下方式获取 URL:
getUrl()
imageFile
ParseFile
imageFile.getUrl();
getUrl()不再工作。而是使用以下内容。
var imageURL = imageFile.url();