阻止JavaScript继承范围

时间:2017-07-22 23:45:41

标签: javascript node.js closures lexical-closures

我正在寻找一种奇特的方法来阻止关闭继承周围的scrope。例如:

let foo = function(t){

  let x = 'y';

  t.bar = function(){

    console.log(x); // => 'y'

  });

};

我知道只有两种方式阻止共享范围:

(1)使用阴影变量:

let foo = function(t){

  let x = 'y';

  t.bar = function(x){

    console.log(x); // => '?'

  });

};

(2)将函数体放在其他地方:

  let foo = function(t){

      let x = 'y';

      t.bar = createBar();

    };

我的问题是 - 有没有人知道第三种方法可以阻止JS继承范围?一些奇特的东西很好。

我认为唯一可行的是Node.js中的vm.runInThisContext()

让我们使用我们的想象力一秒钟,并想象JS有一个私有关键字,这意味着该变量仅对该函数的范围是私有的,如下所示:

  let foo = function(t){

      private let x = 'y';  // "private" means inaccessible to enclosed functions

      t.bar = function(){

        console.log(x); // => undefined

      });

    };

和IIFE不起作用:

let foo = function(t){

    (function() {
    let x = 'y';
    }());

   console.log(x); // undefined (or error will be thrown)
   // I want x defined here

  t.bar = function(){
    // but I do not want x defined here
    console.log(x); 
  }

  return t;
};

2 个答案:

答案 0 :(得分:7)

您可以使用块范围

let foo = function(t) {
  {
    // `x` is only defined as `"y"` here
    let x = "y";
  } 
  {
    t.bar = function(x) {
      console.log(x); // `undefined` or `x` passed as parameter
    };
  }
};


const o = {};
foo(o);

o.bar();

答案 1 :(得分:1)

这项技术有效:

Create helper function to run a function in an isolated scope

 const foo = 3;

 it.cb(isolated(h => {
    console.log(foo);  // this will throw "ReferenceError: foo is not defined"
    h.ctn();
 }));

您可能还会对JavaScript with运算符

感到满意