这是我的代码
function kakaoLogin() {
RNKakaoLogins.login((err, result) => {
Alert.alert("token", result);}}
function kakaoLogin() {
RNKakaoLogins.login((err, result) => {
Alert.alert("token", result.token);}}
结果是
为什么不获得令牌值? 如何获取令牌值?
答案 0 :(得分:1)
我有99%的把握确保您的结果是字符串化的,所以这就是为什么您有{token: ... }
的原因,您应该首先解析响应,然后尝试显示它。
const response = JSON.parse(result);
Alert.alert("token", response.token); // now response is parsed object and property toke is accessible