请问用node 7.0为什么下面的代码运行不了?
高洛峰
高洛峰 2016-11-01 10:59:59
0
1
574

据说node7.0已经支持async/await,那么下面的代码为什么运行不了?

var sleep=function(time){
    return new Promise(function(resolve,reject){
        setTimeout(function(){
            resolve('ok');
        },time);
    });
};

async function start(){
    let result =await sleep(3000);
    console.log(result);
}

start();


高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

全員に返信(1)
三叔
node --harmony myapp.js

https://nodejs.org/en/docs/es6/

All ECMAScript 2015 (ES6) features are split into three groups for shipping, staged, and in progress features:
All shipping features, which V8 considers stable, are turned on by default on Node.js and do NOT require any kind of runtime flag.
Staged features, which are almost-completed features that are not considered stable by the V8 team, require a runtime flag: --harmony.
In progress features can be activated individually by their respective harmony flag, although this is highly discouraged unless for testing purposes. Note: these flags are exposed by V8 and will potentially change without any deprecation notice.


いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート