V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
ssshooter
V2EX  ›  程序员

这是浏览器的 bug 还是 feature,我的 this 呢?

  •  
  •   ssshooter ·
    ssshooter · 2021-11-15 18:09:59 +08:00 · 2322 次点击
    这是一个创建于 886 天前的主题,其中的信息可能已经有所发展或是发生改变。

    MJF5~FMPX_42@_S_IGGL_C3.png

    12 条回复    2021-11-15 22:22:29 +08:00
    cxe2v
        1
    cxe2v  
       2021-11-15 18:21:04 +08:00
    箭头函数内的 this 有它自己的想法

    一般来说是继承上级词法作用域的 this ,这里看来是继承了 map 这个 function 的 this
    ssshooter
        2
    ssshooter  
    OP
       2021-11-15 18:28:44 +08:00
    qiguai2017
        3
    qiguai2017  
       2021-11-15 19:22:28 +08:00
    箭头函数没有 this 变量
    hgc81538
        5
    hgc81538  
       2021-11-15 19:49:56 +08:00
    var self = this;

    (function(){
    console.log(this, self);
    })()
    forgcode
        6
    forgcode  
       2021-11-15 19:50:34 +08:00
    为啥要用 eval 而不直接 this.valuesJson[question.variable]。箭头函数会被编译吧,编译之后是临时变量就是不 this 了,写在 eval 中的 this 不会被编译到
    codehz
        7
    codehz  
       2021-11-15 20:22:32 +08:00
    原因是被编译( ES6->ES5 )成
    var _this = this
    ... map(function (question) {
    eval('this.xxx' + xxx)
    });
    这样了。。。
    显而易见编译不可能处理 eval 里面的东西(
    kid740246048
        8
    kid740246048  
       2021-11-15 20:23:46 +08:00
    本质原因是 eval 的调用者是 window ,你开个 F12 跑下这行代码就知道了
    `eval("console.log(this)")`
    cheese
        9
    cheese  
       2021-11-15 20:28:29 +08:00
    原因楼上说了,但是我想知道这里为啥要 eval 啊?
    ssshooter
        10
    ssshooter  
    OP
       2021-11-15 21:47:55 +08:00
    @cheese 因为懒得写个 while ,variable 可能是 `a.b.c.d`
    ssshooter
        11
    ssshooter  
    OP
       2021-11-15 21:48:30 +08:00
    @forgcode
    @codehz 感谢
    cheese
        12
    cheese  
       2021-11-15 22:22:29 +08:00
    @ssshooter #10 对象的深层属性获取,可以看下 lodash 的_.get 还挺好用的 https://lodash.com/docs/#get
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   865 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 29ms · UTC 21:52 · PVG 05:52 · LAX 14:52 · JFK 17:52
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.