无法设置网络图片,并显示错误“图片资源服务捕获了异常...”

时间:2020-08-27 13:48:17

标签: image flutter

此站点上已经存在类似类型的问题,但就我而言,情况有所不同。 请看看我的代码和错误。我无法理解错误。

这是我的代码的一部分,导致错误:

....
....
GridTile(
                              child: Column(
                                mainAxisSize: MainAxisSize.min,
                                children: [
                                  Text(feedbackItems[index].name),
                                  Expanded(
                                    child: Image.network(
                                        '${feedbackItems[index].photo}'),
                                  ),
                                ],
                              ))
....
....

这是错误:

enter image description here

2 个答案:

答案 0 :(得分:0)

请尝试这个。

 Container(  
  height:100,width:100           // you can give height and width there
  child: Image.network(
  '${feedbackItems[index].photo}', fit: BoxFit.fill,),       
 ),

答案 1 :(得分:0)

BASELINK = 'http://xxxx.com/asset/images/'; //defined baselink
Container(  
  height:100,width:100           // you can give height and width there
  child: Image.network(
  BASELINK+'${feedbackItems[index].photo}', fit: BoxFit.fill,),       
 ),