私はrequest-promise
を使用していると私は私が知りたいのは何のコードrequest-promise - 関数外のPromiseからどのように結果を得ることができますか?
func = (a) => {
request(`http://somewebsite.com/${a}`).then((response) => response)
}
のこの作品を持っているが、私はfunc(a)
を呼び出すときに、私は応答を得ることができる方法ですか?つまり、どのようにして応答オブジェクトを取得できますか?例:
var b = func('path');
console.log(b) // Show me the response object, instead it shows undefined.
私は約束の外で回答にアクセスできますか?
約束を返し、別の 'then'関数を追加することができます – adeneo