gpt4 book ai didi

javascript - stripe firebase 可调用函数返回 null

转载 作者:行者123 更新时间:2023-12-02 20:54:01 25 4
gpt4 key购买 nike

我创建了一个 firebase 可调用函数来调用 stripe api 来获取 stripe 客户对象

exports.getDefaultPayment = functions.https.onCall(async (data, context) => {
await stripe.customers.retrieve("cus_H5UarU16gpUbqM", (customer) => {
// asynchronously called
return customer;
});
});

然后我尝试简单地记录该对象

onPress={() => {
const getDefaultPayment = functions().httpsCallable(
'getDefaultPayment'
);
getDefaultPayment().then((result) => {
console.log(JSON.parse(result.data));
});
}}

但结果为空

最佳答案

您的可调用函数实际上并未向客户端返回任何内容。您需要在顶层使用 return 语句,而不是在回调内。另外,您似乎将回调与异步/等待混合在一起,这是没有意义的。只需使用await - 不要为回调而烦恼。也许这会起作用:

return stripe.customers.retrieve("cus_H5UarU16gpUbqM")

关于javascript - stripe firebase 可调用函数返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61533936/

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