```Glide.with(context).load(imageUrl) // 可以加载本地或网络图片//.load(position == 0 ? "https://zhengxin-pub.cdn.bcebos.com/logopic/3xxx.jpg" : imageUrl) // 可以加载本地或网络图片//.load(imageUrl) // 可以加载本地或网络图片.into(photoView);
我测试网络上有文件名的发现可以所以找到原因了提示
setDataSourceCallback failed status=0x800000
VideoDecoder**
![f329cf8d73cd3c19b14df91a9662452e.png](https://upload-images.jianshu.io/upload_images/2815884-8126046987df5ee4.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
由于某些原因后端是文件存储在数据库的,但是没办法,爱屋及乌我也只能这么搞,我后端的逻辑是这么写的,但是遇到个问题
filename = dataTable.Rows[0]["ImgName"].ToString() ?? "";
byte[] pictureBytes = (byte[])dataTable.Rows[0]["ImgData"];
return new FileContentResult(pictureBytes, "image/jpeg") {
FileDownloadName = filename,
EnableRangeProcessing = true // 支持断点续传,这对大图片加载有用
};
问题出在了glide身上,但是为了让他兼容,于是我加了个文件名传递
```/ccessFAIPic/?id=146```
[HttpGet("accessFAIPic")]
public IActionResult GetPicture(int id, bool onlyCheck, string checkID = "0", string filename = "")
{
```/ccessFAIPic/a.jpg?id=146```
改为如下
[HttpGet("accessFAIPic/{filename?}")]
public IActionResult GetPicture(int id, bool onlyCheck, string checkID = "0", string filename = "")
{
版权声明:
本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。
我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com