我从web帐户上传图像,这张图片也显示在手机上,但当我从手机上传图像时,它不能在web或任何其他移动设备上显示。
因为在数据库中,web图像uri是可读的,但是移动图像uri无法读取我的图像选择代码
const pickImage = async () => {
// No permissions request is necessary for launching the image library
let result = await ImagePicker.launchImageLibraryAsync({
我有一个在网络和移动平台上运行的应用程序,它的用户可以使用该应用程序上传照片。我需要一个web服务来处理上传和显示web和移动应用程序上的图像。
使用ASP.NET Web API作为图像服务并在其上发出上传照片的POST请求是不是一个好主意?这种方法的优点和缺点是什么?对这样的服务使用ASP.NET Web API开销吗?