【问题标题】:Only static member in initializer [duplicate]初始化程序中只有静态成员[重复]
【发布时间】:2018-06-17 20:26:21
【问题描述】:

我正在尝试做一些教程,在将类对象传递给我的小部件时遇到了一些问题,我完全迷失了这个......

class Planet {
  String id;
  String name;
  String location;
  String distance;
  String gravity;
  String description;
  String image;
  String picture;

  Planet({this.id, this.name, this.location, this.distance, this.gravity, this.description, this.image, this.picture});
}

List<Planet> planets = <Planet>[
  Planet(
      id: "1",
      name: "Mars",
      location: "Milkyway Galaxy",
      distance: "54.6m Km",
      gravity: "3.711 m/s ",
      description:
          "Mars is the fourth planet from the Sun and the second-smallest planet in the Solar System after Mercury. In English, Mars carries a name of the Roman god of war, and is often referred to as the 'Red Planet' because the reddish iron oxide prevalent on its surface gives it a reddish appearance that is distinctive among the astronomical bodies visible to the naked eye. Mars is a terrestrial planet with a thin atmosphere, having surface features reminiscent both of the impact craters of the Moon and the valleys, deserts, and polar ice caps of Earth.",
      image: "assets/images/mars.png",
      picture: "https://www.nasa.gov/sites/default/files/thumbnails/image/pia21723-16.jpg"),
];

在我的小部件中我有:

class PlanetSummary extends StatelessWidget {
 final Planet planet;

 PlanetSummary(this.planet);

final Widget _planetThumbnail = new Container(
    margin: new EdgeInsets.symmetric(vertical: 16.0),
    alignment: FractionalOffset.centerLeft,
    child: new Image(
      image: new AssetImage(planet.image),  // <---- ERROR (planet.name) only static member can be accessed in initializers 
      height: 92.0,
      width: 92.0,
    ),
  );

我完全不明白这个错误有人可以帮忙吗?

【问题讨论】:

  • @RaoufRahiche 即使那个问题根本没有给我任何线索,不幸的是我该如何解决我的问题.. :(

标签: dart flutter


【解决方案1】:

类成员变量planet,(因为它不是静态变量)将在构造函数中获取它的值,所以我们不能使用一个非静态类成员变量来为另一个非静态类成员赋值。如果您不想使用行星为您的小部件分配值,请将您的类更改为 StatefulWidget,您可以尝试仅声明非最终变量 _planetThumbnail 并在类的 iniState 方法中分配其值

@override
void initState(){
  super.initState();
  _planetThumbnail = <your widget initialization code>
}

如果你只想使用 StatelessWidget 类,那么只需在 build 方法中创建 _planetThumbnil 小部件并使用它。

【讨论】:

  • 哦天啊...好的,现在我明白了!!!!谢谢! :)
猜你喜欢
  • 2013-07-12
  • 1970-01-01
  • 2020-01-05
  • 1970-01-01
  • 2019-01-23
  • 2018-11-13
  • 1970-01-01
  • 1970-01-01
  • 2020-08-31
相关资源
最近更新 更多