gpt4 book ai didi

ios - 获取变量的正确值

转载 作者:行者123 更新时间:2023-11-29 11:49:33 25 4
gpt4 key购买 nike

当我尝试使用此代码获取“isFullVersionBought”的值时 - 一切都很完美:

inApp1.get('isFullVersionBought').then((data) => {console.log("What is the value?: ", data)});

此代码返回“值是多少?”、"is"

但是当我为这段代码使用变量时——它返回了错误的值。这是我的变量代码(+控制台):

let fullversionbought = inApp1.get('isFullVersionBought').then((data) => {data});
console.log(fullversionbought);

此代码返回我 { _45: 0, _81: 1, _65: 'Yes', _54: null }

为什么?如何获取"is"的值?

最佳答案

您在请求完成之前设置了 fullversionbought,因此会记录一个不完整的值。试试这个

inApp1.get('isFullVersionBought').then((data) => {
console.log(data);
let fullversionbought = data;
// Do whatever you need with this value now that the req completed.
});

关于ios - 获取变量的正确值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41765872/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com