gpt4 book ai didi

firebase - 方法 '[ ]' 在 null 上被调用

转载 作者:行者123 更新时间:2023-12-04 02:44:10 24 4
gpt4 key购买 nike

firestore setup我正在运行我的应用程序并收到错误消息:

“NoSuchMethodError:方法 '[]' 在 null 上被调用。接收者:null。尝试调用:。”

这也发生在“photourl”和“total questions”中,我的 firestore 数据库中的所有三个字段。

这个错误是在我实现 provider 之后发生的,所以我不确定这是否是这个结果。

我的代码如下:

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 的变量上调用。我建议您检查 null 或使用 ?? 为 map 提供默认值每次访问 map 属性之前。

关于firebase - 方法 '[ ]' 在 null 上被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57955109/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com