1

我正在关注 ConnectyCube API文档,它告诉我在使用 Firebase 凭据时格式化这样的对象:

 const userCredentials = {
                      provider: 'firebase_phone',
                      firebase_phone[project_id]: projectId,
                      firebase_phone[access_token]: idToken,
                    };

当然,该应用程序不会编译,因为您不能像这样使用方括号,它会引发 linting 错误。

我已经尝试摆脱它,但它不起作用,他们试图告诉我做什么?

4

1 回答 1

1

固定 - 必须这样写:

provider: 'firebase_phone',
                      'firebase_phone[project_id]': "xxxxxxxxxx",
                      'firebase_phone[access_token]': idToken,
于 2019-08-14T17:47:30.147 回答