方法'[]'在null上被调用 [英] The method '[ ]' was called on null

查看:79
本文介绍了方法'[]'在null上被调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在运行我的应用并收到错误:

I am running my app and getting the error:

"NoSuchMethodError:方法'[]'在null上调用.接收方:null.尝试调用:."

"NoSuchMethodError: The Method '[ ]' was called on null. Receiver: null. Tried calling: ."

"fireurl"数据库中的所有三个字段也都出现了"photourl"和"totalquestions".

This is also happening for "photourl" and "total questions", all three fields that I have in my firestore database.

在实施提供程序后会发生此错误,因此我不确定这是否是此结果.

This error is occurring after I implemented provider, so I am not sure if this is a result of this.

我的代码如下:

void main() {
  runApp(
      ChangeNotifierProvider(
      builder: (context) => UserModel(),
      child: MyApp(),
      ),
  );
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Profile Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new MyHomePage(title: 'Profile'),
    );
  }
}

class User {
  final int name;
  final DocumentReference reference;

  User.fromMap(Map<String, dynamic> map, {this.reference})
      : name = map['name'];

  User.fromSnapshot(DocumentSnapshot snapshot)
      : this.fromMap(snapshot.data, reference: snapshot.reference);
}

class Photo {
  final int photourl;
  final DocumentReference reference;

  Photo.fromMap(Map<String, dynamic> map, {this.reference})
      : photourl = map['photourl'];

  Photo.fromSnapshot(DocumentSnapshot snapshot)
      : this.fromMap(snapshot.data, reference: snapshot.reference);
}

class Questions {
  final int totalquestions;
  final DocumentReference reference;

  Questions.fromMap(Map<String, dynamic> map, {this.reference})
      : totalquestions = map['totalquestions'];

  Questions.fromSnapshot(DocumentSnapshot snapshot)
      : this.fromMap(snapshot.data, reference: snapshot.reference);
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

  @override
  _MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    final _width = MediaQuery.of(context).size.width;
    final _height = MediaQuery.of(context).size.height;
    return Consumer<UserModel>(builder: (context, userModel, child) {
      return StreamBuilder<DocumentSnapshot>(
        stream: Firestore.instance.collection(userModel.uid)
            .document(userModel.uid).snapshots(),
        builder: (context, snapshot) {
          if (snapshot.hasData) {
            return Stack(
              children: <Widget>[
                new Container(
                  color: Colors.blue,
                ),
                new Image.network(
                  snapshot.data['photourl'].toString(),
                  fit: BoxFit.fill,
                ),
                new BackdropFilter(
                    filter: new ui.ImageFilter.blur(
                      sigmaX: 6.0,
                      sigmaY: 6.0,
                    ),
                    child: new Container(
                      decoration: BoxDecoration(
                        color: Colors.blue.withOpacity(0.9),
                        borderRadius: BorderRadius.all(Radius.circular(50.0)),
                      ),
                    )),
                new Scaffold(
                  appBar: new AppBar(
                    title: new Text(widget.title),
                    centerTitle: false,
                    elevation: 0.0,
                    backgroundColor: Colors.transparent,
                  ),
                  drawer: new Drawer(
                    child: new Container(),
                  ),
                  backgroundColor: Colors.transparent,
                  body: new Center(
                    child: new Column(
                      children: <Widget>[
                        new SizedBox(
                          height: _height / 12,
                        ),
                        new CircleAvatar(
                          radius: _width < _height ? _width / 4 : _height / 4,
                          backgroundImage: NetworkImage(snapshot.data['photourl']),
                        ),
                        new SizedBox(
                          height: _height / 25.0,
                        ),
                        new Text(
                          snapshot.data['name'],
                          style: new TextStyle(fontWeight: FontWeight.bold, fontSize: _width / 15, color: Colors.white),
                        ),
                        new Padding(
                          padding: new EdgeInsets.only(top: _height / 30, left: _width / 8, right: _width / 8),
                        ),
                        new Divider(
                          height: _height / 15,
                          color: Colors.white,
                        ),
                        new Row(
                          children: <Widget>[
                            rowCell(snapshot.data['totalquestions'], 'Answers'),
                            rowCell('£ ${int.parse(snapshot.data['totalquestions']) * 2}', 'Earned'),
                          ],
                        ),
                        new Divider(height: _height / 15, color: Colors.white),
                      ],
                    ),
                  ),
                ),
              ],
            );
          } else {
            return CircularProgressIndicator();
          }
        },
      );
    });
  }

推荐答案

该错误仅说明在不包含Map对象且为null的变量上调用了运算符 [] .我建议您每次访问map的属性之前,都要使用 ?? 检查是否为null或为map提供默认值.

The error simply states that the operator [] is called on a variable that does not contain a Map object and is rather null. I would suggest you to place a check for null or provide a default value for map using ?? everytime before you access a property of map.

这篇关于方法'[]'在null上被调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆