我正在开发一个Android应用程序在离子角与Firebase。昨天我有这个问题在VSC和尽可能多的搜索,我找不到解决方案。
This is the problem
this is the Ts from my page Register users
问题出在第41行“const id = res.user.uid;“
models.ts
请帮帮我!
我尝试更改常量id = res.user.uid;用户ID = res.user.uid;但不起作用
我正在开发一个Android应用程序在离子角与Firebase。昨天我有这个问题在VSC和尽可能多的搜索,我找不到解决方案。
This is the problem
this is the Ts from my page Register users
问题出在第41行“const id = res.user.uid;“
models.ts
请帮帮我!
我尝试更改常量id = res.user.uid;用户ID = res.user.uid;但不起作用
1条答案
按热度按时间ct3nt3jp1#
尝试初始化变量并确保它不为空。如果这还不够,且您确定变量(如
user
)不会为空,则可以尝试或者,您可以通过在代码中出现错误的部分后面添加以下代码行来隐藏错误:
或者您通常可以在
tsconfig.json
文件中禁用项目中的空检查(不推荐使用),如下所示: