我正在使用Stormpath和Express,我想访问数据库中存在的特定用户的自定义数据,而不是以该用户身份登录。这将用于管理式UI,其中具有特定权限的用户可以编辑其他用户的自定义数据。
如何使用req.user.customData
访问特定用户的数据,例如我访问当前用户的数据?
答案 0 :(得分:3)
如果你正在使用快递库,你可以这样说:
app.get('stormpathApplication').getAccount(account_href_here, function(err, account) {
if (err) throw err;
account.getCustomData(function(err, data) {
if (err) throw err;
console.log(data);
});
});
app.get('stormpathApplication')
是一个引擎盖下的应用程序对象,因此这些API文档中的任何一个都可以使用它:http://docs.stormpath.com/nodejs/api/application
我是这个图书馆的开发者,希望这有帮助!