我通过使用请求Stormpath用户自定义数据

res.render('home', {
title: 'home',
user: req.user.customData,


});


我希望收到自定义数据的json对象,但返回了URL('https://api.stormpath.com/v1/accounts/WvtGbIH3kJ4rEttVF5r9U/customData')。该页面确实具有我想要的自定义数据,但由于它是https页面,因此我无法使用Ajax请求来请求它。我该怎么办?提前致谢

最佳答案

您需要使用该库的“自动扩展”功能,如下所示:

app.use(stormpath.init(app, {
  expandCustomData: true,
});


这将为您扩展自定义数据资源。如您所见,默认情况下,它只是资源的链接。

09-30 09:22