从异步函数返回的promise中获取值

时间:2016-02-11 11:11:01

标签: javascript async-await ecmascript-next

我已经习惯了提议的异步/等待语法,并且有一些不直观的行为。在“async”函数中,我可以在console.log中找到正确的字符串。但是,当我尝试返回该字符串时,它会返回一个promise。

检查此条目:async/await implicitly returns promise?,很明显任何“async function()”都会返回一个promise,而不是一个值。没关系。但是,您如何获得价值?如果唯一的答案是“回调”,那很好 - 但我希望可能会有更优雅的东西。

// src 
// ==========================================

require("babel-polyfill");
var bcrypt = require('bcrypt');

var saltAndHash = function(password){
  var hash;
  return new Promise(function(resolve, reject){
    bcrypt.genSalt(10, function(err, salt) {
      bcrypt.hash(password, salt, function(err, hash) {
          resolve(hash);
      });
    });
  })
}

var makeHash = async function(password){
  var hash = await saltAndHash(password);
  console.log("inside makeHash", hash); 
  return(hash); 
}

// from test suite
// ==========================================

describe('Bcrypt Hashing', function(){

  it('should generate a hash', function(){
    var hash = makeHash('password');
    console.log("inside test: ", hash); 
    should.exist(hash);
  })

})

// output to console:
// ==========================================

  inside test:  Promise {
  _d: 
   { p: [Circular],
     c: [],
     a: undefined,
     s: 0,
     d: false,
     v: undefined,
     h: false,
     n: false } }

  inside MakeHash $2a$10$oUVFL1geSONpzdTCoW.25uaI/LCnFqeOTqshAaAxSHV5i0ubcHfV6

  // etc 
  // ==========================================
  // .babelrc
    {  "presets": ["es2015", "stage-0", "react"] }

1 个答案:

答案 0 :(得分:9)

是的,您只能使用回调访问它:

makeHash('password').then(hash => console.log(hash));

当然,你可以制作另一个等待它的异步函数:

it('should generate a hash', async function(){
  var hash = await makeHash('password');
  console.log("inside test: ", hash); 
  should.exist(hash);
})

无法同步访问承诺的结果。