我有一个代码,它选择一个图像,并将该URI中的内容复制到应用程序的FileSystem.documentDirectory中,以保持其持久性。但它抛出了一个***"[错误:不兼容类的参数:类java.lang.String不能作为参数传递给需要接口java.util.Map的参数。]"***错误
我的代码:
const fileName = FileSystem.documentDirectory + "myfiles/targetImage." + extention;
await FileSystem.copyAsync(nTarget.image, fileName);
1条答案
按热度按时间7xllpg7q1#
您需要传递选项参数{}
Expo文档中的重新定位选项