- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
函数signInWithGoogle
调用 getUser
函数从 Firestore 数据库中检索用户信息并期望一个 User
作为返回。因为这是一个 Firestore API 调用,所以 User
由 getUser
返回是 Future
和 getUser
用 await
调用.
在getUser
功能,User
按预期填充并使用 debugPrint("new user schedule 0: " + i[0].toJson());
验证
然而在signInWithGoogle
功能,User
未收到来自 Future<User>
的回复,如对 schedule
的空引用所示在执行 debugPrint("user schedule 0: " + u.schedule[0].toJson());
时
我尝试过以多种方式设置返回值(getUser
函数),包括在设置它的值并返回之前单独实例化一个用户类。
Future<User> getUser(_uid) async {
DocumentSnapshot qs = await Firestore.instance
.collection('users')
.document(_uid)
.get();
if (qs.exists) {
setState(() {
state.loadingStatus = "Getting User Information";
});
return new User(
schedule: await getRecipes(
Firestore.instance
.collection('users')
.document(_uid)
.collection('schedule')
).then((i) {
debugPrint("get schedule");
debugPrint("new user schedule 0: " + i[0].toJson());
}).catchError((error) {
debugPrint('Error: $error');
}),
favorites: await getRecipes(
Firestore.instance
.collection('users')
.document(_uid)
.collection('favorites')
).then((i) {debugPrint("get favorites");}).catchError((error) {
debugPrint('Error: $error');
}),
subscription: await getSubscription(_uid).then((i) {debugPrint("get subscription");}),
pantry: await getIngredientsList(
Firestore.instance
.collection('users')
.document(_uid)
.collection('pantry')
).then((i) {debugPrint("get pantry");}).catchError((error) {
debugPrint('Error: $error');
}),
shopping: await getIngredientsList(
Firestore.instance
.collection('users')
.document(_uid)
.collection('shopping')
).then((i) {debugPrint("get shopping list");}).catchError((error) {
debugPrint('Error: $error');
}),
preferences: await getPreferences(_uid).then((i) {debugPrint("get preferences");}),
);
}else {
setState(() {
state.loadingStatus = "Creating new User Information";
});
return User.newUser();
}
}
Future<Null> signInWithGoogle() async {
setState(() {
state.loadingStatus = "Signing in with Google";
});
if (googleAccount == null) {
// Start the sign-in process:
googleAccount = await googleSignIn.signIn();
}
FirebaseUser firebaseUser = await signIntoFirebase(googleAccount);
User user = await getUser(firebaseUser.uid);
debugPrint("user schedule 0: " + user.schedule[0].toJson());
setState(() {
state.isLoading = false;
state.loadingStatus = "";
state.user = firebaseUser;
state.userInfo = user;
});
}
I/flutter (17962): new user schedule 0: {Proper data is printed here...
I/flutter (17962): get favorites
I/flutter (17962): get subscription
I/flutter (17962): get pantry
I/flutter (17962): get shopping list
I/flutter (17962): get preferences
E/flutter (17962): [ERROR:flutter/lib/ui/ui_dart_state.cc(148)] Unhandled Exception: NoSuchMethodError: The method '[]' was called on null.
E/flutter (17962): Receiver: null
E/flutter (17962): Tried calling: [](0)
我希望在打印 schedule[0]
时不会收到空引用错误来自 signInWithGoogle
当同样的调用打印schedule[0]
在 getUser
工作功能。
这可能是我所缺少的愚蠢简单的东西,但在查看过去 3 小时的代码后我无法弄清楚发生了什么。
如果您需要任何进一步的信息,请告诉我。
最佳答案
问题就在这里:
schedule: await getRecipes(
Firestore.instance
.collection('users')
.document(_uid)
.collection('schedule')
).then((i) {
debugPrint("get schedule");
debugPrint("new user schedule 0: " + i[0].toJson());
// this is a problem, there is no return!
}).catchError((error) {
debugPrint('Error: $error');
}),
这将 null
传递给 schedule:
参数,这不是您的意图。当您await someFuture.then(something)
时,您从something
中获取返回值,它是null
在这种情况下,不是 someFuture
的解析值。
关于flutter - 未按预期从 await 函数返回 Future,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56410525/
我有一个 forEach循环处理数组中的数据。在该循环中间的某个地方,我必须等待 DOM 元素的更改,获取该更改,处理它,然后才能继续处理数组。 我希望在控制台中看到这个: Preparing "aa
给定以下方法: public async Task DoSomethingAsync() { // do some work await OpenSomeFileAsync();
尝试在 .exports 中运行一个异步函数,获取 Promise,然后在下一个异步函数中使用结果,但由于某种原因,无论等待如何,第二个函数都会在第一个函数之前执行。 销售.js = const sq
谁能解释为什么 c# 5 中的异步函数需要至少有 1 个等待?我找不到明确的理由/解释。 所谓必需,是指当异步函数内部没有任何 await 调用时编译器会发出警告,但不会抛出编译错误。 来自 this
我想用 Mocha 测试异步代码. 我跟着这个教程testing-promises-with-mocha .最后,它说最好的方法是 async/await。 以下是我的代码,我打算将 setTimeo
这个问题在这里已经有了答案: How do yield and await implement flow of control in .NET? (5 个答案) How is resumption
我想在 trait 中编写异步函数,但是因为 async fn in traits 还不被支持,我试图找到等效的方法接口(interface)。这是我在 Rust nightly (2019-01-0
在 node.js 中,我有一个数据库事务,我想在 then 回调中调用一个 async 方法,但我收到错误消息 关键字“等待”已保留。 这是异步 saveImage 函数: const saveIm
我正在包装 AspNet.Identity。但有些事情让我对 TPL 感到困惑。 第一个例子: public virtual async Task RemovePasswordAsync(st
我有三个 showDialog 示例。我认为 _showAlert1 是正确的,但它使用 2 个函数来实现它。 _showAlert2 也有效,但我认为它不正确,因为我认为 showDialog 是异
我正在编写一个应该尽可能快地执行所有异步函数的函数,但是,它们中只有 5 个可以同时运行。 我想使用 Promise.race 来实现,所以实现不是最好的。问题是代码执行不会在 await 处停止。我
在 Scala 和其他编程语言中,可以使用 Futures 和 Await。 (在实际代码中,会使用例如 zip+map 而不是 Await) def b1() = Future { 1 } def
这个问题在这里已经有了答案: At the end of an async method, should I return or await? (2 个回答) 8年前关闭。 我做了一些阅读,并认为我已
我知道这是一个非常开放的问题,我深表歉意。 我可以看到 Await.ready返回 Awaitable.type而 Await.result返回 T但我仍然混淆他们。 两者有什么区别? 一个是阻塞的,
为什么等待者(GetAwaiter - 使类可等待)是结构而不是类。使用类有什么坏处吗? public struct ConfiguredTaskAwaiter : ICriticalNotifyCo
这个问题在这里已经有了答案: Why doesn't Scala's Future have a .get / get(maxDuration) method, forcing us to resor
async/await 链中的所有函数都必须使用 async/await 关键字吗? async function one() { return await fetch(.....); } asy
点击组件的按钮时将执行以下方法。 async onClickButton() { await this.shoppingCartService.add(this.selectedOffer);
它似乎被记录在案的唯一地方是 this issue thread和 the actual specification .但是,删除的原因并没有在我能找到的任何地方发布。 新的推荐方式似乎是await
为什么使用 await 需要将其外部函数声明为 async? 例如,为什么这个 mongoose 语句需要它所在的函数来返回一个 promise? async function middleware(
我是一名优秀的程序员,十分优秀!