1. ホーム
  2. javascript

Node.JSのデストラクチャリング

2023-09-01 01:09:47

質問

この最近のビデオ は、EMCAScript 6 のデストラクチャリングがすでに Node.JS に部分的に実装されていると主張しています。私は様々な例を試しました(v0.10.12 を使用し、また --harmony フラグを使用)、次のような例を試してみました。

var [a, b] = [1, 2];

var {a: a, b: b} = {a: 1, b: 2};

を無駄にする。 このチケット は、V8ではまだdestructuringがサポートされていないことを示唆しているようです。

Node.JSで本当に部分的に実装されているのでしょうか?私が遊ぶことができるコードのスニペットは何ですか?

どのように解決するのですか?

node v6 およびそれ以降のバージョンへのアップデート : Node v6 は特別なことをしなくても、構造化代入をサポートします。

var [a, b] = [1, 2];

古いバージョンのnodeの場合 : と入力することで、サポートされているハーモニー機能の一覧を取得できます。

node --v8-options | grep harmony

node 5.x が与えます。

--es_staging (enable all completed harmony features)
--harmony (enable all completed harmony features)
--harmony_shipping (enable all shipped harmony fetaures)
--harmony_modules (enable "harmony modules" (in progress))
--harmony_regexps (enable "harmony regular expression extensions" (in progress))
--harmony_proxies (enable "harmony proxies" (in progress))
--harmony_sloppy_function (enable "harmony sloppy function block scoping" (in progress))
--harmony_sloppy_let (enable "harmony let in sloppy mode" (in progress))
--harmony_unicode_regexps (enable "harmony unicode regexps" (in progress))
--harmony_reflect (enable "harmony Reflect API" (in progress))
--harmony_destructuring (enable "harmony destructuring" (in progress))
--harmony_default_parameters (enable "harmony default parameters" (in progress))
--harmony_sharedarraybuffer (enable "harmony sharedarraybuffer" (in progress))
--harmony_atomics (enable "harmony atomics" (in progress))
--harmony_simd (enable "harmony simd" (in progress))
--harmony_array_includes (enable "harmony Array.prototype.includes")
--harmony_tostring (enable "harmony toString")
--harmony_concat_spreadable (enable "harmony isConcatSpreadable")
--harmony_rest_parameters (enable "harmony rest parameters")
--harmony_sloppy (enable "harmony features in sloppy mode")
--harmony_arrow_functions (enable "harmony arrow functions")
--harmony_new_target (enable "harmony new.target")
--harmony_object_observe (enable "harmony Object.observe")
--harmony_spreadcalls (enable "harmony spread-calls")
--harmony_spread_arrays (enable "harmony spread in array literals")
--harmony_object (enable "harmony Object methods")

必要なフラグを --harmony_destructuring は、Node 4.1 で追加されました。現在、このフラグを渡すには --harmony_destructuring フラグを渡す必要があります。

$ node --harmony_destructuring
> var {foo} = {foo: 'bar'};
undefined
> foo
'bar'