我正在使用loopback-next和Stripe API。在Stripe API中,我按以下方式在Payments.controller.ts文件中调用检索帐户:
@post('/payments/retrieve-stripe/{id}', {
responses: {
'200': {
description: 'User model instance',
content: {'application/json': {schema: {'x-ts-type': User}}},
},
},
})
async retrieveStripe(@param.path.number('id') id: number,
@requestBody() req: any): Promise<any> {
console.log(req);
if (!req.stripeAccountId) {
throw new HttpErrors.NotFound('No Stripe Account');
}
else {
return await stripe.accounts.retrieve(
req.stripeAccountId,
function(err: any, account: any) {
return err ? err : account
})
}
}
但是,当我尝试退货帐户时,JSON主体中未返回任何内容。如果我尝试前端的response.json,它表示JSON意外完成,这意味着主体中没有任何内容。如何在控制器功能内的上述功能中成功返还帐户?
这与我尝试返回字符串时遇到的问题相同。我不确定该怎么办。
编辑:我了解到您无法在回调中返回变量,这就是问题所在。
答案 0 :(得分:1)
您必须要求类型定义(@types/stripe)才能以承诺样式使用其库。之后,您可以按以下方式使用:-
@post('/payments/retrieve-stripe/{id}', {
responses: {
'200': {
description: 'User model instance',
content: { 'application/json': { schema: { type: 'object' } } },
},
},
})
async retrieveStripe(@param.path.number('id') id: number,
@requestBody() req: any): Promise<any> {
console.log(req);
if (!req.stripeAccountId) {
throw new HttpErrors.NotFound('No Stripe Account');
} else {
return await stripe.accounts.retrieve(req.stripeAccountId).then((res: any) => {
return res;
}).catch((err: any) => {
console.debug(err);
throw new HttpErrors.InternalServerError('Something went wrong!')
});
}
}
有关更多详细信息,https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/stripe/stripe-tests.ts