0

内で 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

4

2 に答える 2

0
var RP = require('request-promise')

app.service('users').create({
    email: body.email,
    password: body.password
}).then(function () {
    var opt = {
        url: 'targetUrl', 
        formData: {
            email: body.email,
            password: body.password
            //, json: true // if result is in json format 
        }
    }
    return RP.post(opt)
}).then(function (postResult) {

})
.catch(next);
于 2016-11-29T04:22:04.730 に答える