当我必须返回一个字段名时,为什么它会说“没有为类型 'Map<String, dynamic>' 定义 getter 'fieldName'”。
import 'package:mongo_dart/mongo_dart.dart';
var db = Db("mongodb://127.0.0.1:27017/test");
await db.open();
var collection = db.collection('Users');
await collection.find().forEach(
(users) {
dbfieldName = users.fieldName; // This is where the problem occurs.
},
);
提前致谢。