V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
ftfniqpl
V2EX  ›  Node.js

js 公有方法通过 new Function 方式调用私有方法的问题?

  •  
  •   ftfniqpl · 2016-05-22 17:46:25 +08:00 · 3259 次点击
    这是一个创建于 2867 天前的主题,其中的信息可能已经有所发展或是发生改变。
    var Circle = function() {
       var pi = function(){
           return '3.14159';
        };
    
       this.area = function( str) {
           console.log(eval(str)());    //能正确调用
           console.log(new Function('return '+str));     如何调用??
       };
    }
    var c= new Circle();
    c.area('pi');
    
    10 条回复    2016-05-23 09:27:05 +08:00
    littlepanzh
        1
    littlepanzh  
       2016-05-22 18:29:30 +08:00 via iPhone
    LZ 这个写法……可以当面试题了,考察变量作用域……典型的反面教材……
    SoloCompany
        2
    SoloCompany  
       2016-05-22 18:31:11 +08:00 via iPhone
    new function 和 eval 完全没区别,都是毫无安全性可言,你漏了执行 function 这一步而已
    ftfniqpl
        3
    ftfniqpl  
    OP
       2016-05-22 18:45:20 +08:00
    @SoloCompany 当我使用 new Function('return '+str).call());的时候,会提示 pi is not defined. 应该是 new Function 的时候需要使用 apply 传入作用域,不知道传啥?
    SoloCompany
        4
    SoloCompany  
       2016-05-22 18:54:39 +08:00 via iPhone
    @ftfniqpl 如果是这样的话就说明 new function 不能访问闭包了,建议去查一下 ecma 规范吧
    xavierchow
        5
    xavierchow  
       2016-05-22 22:46:58 +08:00
    Note: Functions created with the Function constructor do not create closures to their creation contexts; they always are created in the global scope. When running them, they will only be able to access their own local variables and global ones, not the ones from the scope in which the Function constructor was called. This is different from using eval with code for a function expression.

    -- http://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function
    surgit
        6
    surgit  
       2016-05-22 23:06:26 +08:00
    不是 FUNCTION 的问题.
    c.area('pi'); 这里的 pi 肯定取不到你构造函数里的静态方法 pi 的.
    写代码还是少带点奇技淫巧的好.你这里传 function 作为参数.
    magicdawn
        7
    magicdawn  
       2016-05-23 08:07:20 +08:00
    new Function 只可访问全局变量哦~

    var Circle = function() {
    var pi = function(){
    return '3.14159';
    };

    var locals = {
    pi: pi
    };

    this.area = function( str) {
    return locals[str] && locals[str]();
    };
    }
    var c= new Circle();
    c.area('pi');
    magicdawn
        8
    magicdawn  
       2016-05-23 08:16:39 +08:00
    new Function 可以传参哦

    sagnitude
        9
    sagnitude  
       2016-05-23 08:30:19 +08:00
    应该是这儿
    http://www.ecma-international.org/ecma-262/5.1/index.html#sec-10.4.2

    eval: 10.4.2 的 2.b, 2.c , eval 会把当前执行 context 设为调用者的 context (VariableEnvironment)
    所以能调到局部变量

    new Function: 10.4.3 的 5 和 7 ,把当前执行环境设为 NewDeclarativeEnvironment(Function.prototype.[[Scope]]),所以得不到局部变量
    napsterwu
        10
    napsterwu  
       2016-05-23 09:27:05 +08:00
    就没有人给楼主一个正确的姿势吗。。
    http://jsbin.com/vefadiyidi/edit?js,console
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2484 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 16:02 · PVG 00:02 · LAX 09:02 · JFK 12:02
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.