内で http 投稿をしたい.then()
。私はすでに多くの異なる方法でそれを行っています...何も機能しませんでした。ユーザーを作成しPOST
、作成後にhttpを実行しようとしています。
'use strict';
module.exports = function(app) {
return function(req, res, next) {
const body = req.body;
// Get the user service and `create` a new user
app.service('users').create({
email: body.email,
password: body.password
}).then('I WANT HTTP POST WITH PARAMS HERE')
// On errors, just call our error middleware
.catch(next);
};
};
でメールとパスワードを送信したいPOST