无法使用静态访问访问实例成员 'log'
Instance member 'log' can't be accessed using static access
我有以下函数并尝试读取输入值 email
和 password
,但我收到以下错误:
Future<void> _authenticate(
String email, String password, String urlSegment) async {
Console.log(email);
Console.log(password);
final url = Uri.parse('http://10.0.2.2:8000/api/$urlSegment');
try {
final response = await http.post(
url,
body: json.encode(
{
'email': email,
'password': password,
//'returnSecureToken': true,
},
),
);
.
.
.
Instance member 'log' can't be accessed using static access.
问题是什么?为什么我在某些应用程序中不能使用Console.log()
来查看变量的值?
在flutter中,我们使用print语句来console调试。
像这样
print(email);
print(password);
对于字符数较多的文本,您也可以使用 debugPrint("email": $email)。
我有以下函数并尝试读取输入值 email
和 password
,但我收到以下错误:
Future<void> _authenticate(
String email, String password, String urlSegment) async {
Console.log(email);
Console.log(password);
final url = Uri.parse('http://10.0.2.2:8000/api/$urlSegment');
try {
final response = await http.post(
url,
body: json.encode(
{
'email': email,
'password': password,
//'returnSecureToken': true,
},
),
);
.
.
.
Instance member 'log' can't be accessed using static access.
问题是什么?为什么我在某些应用程序中不能使用Console.log()
来查看变量的值?
在flutter中,我们使用print语句来console调试。
像这样
print(email);
print(password);
对于字符数较多的文本,您也可以使用 debugPrint("email": $email)。