码迷,mamicode.com
首页 > 编程语言 > 详细

vue 数组更新大概原理(仅供理解)

时间:2017-06-07 15:35:32      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:return   this   数组   res   code   tab   pre   function   响应   

var a = [1,1,4]
var arrayProto = Array.prototype;
var arrayMethods = Object.create(arrayProto); 
Object.defineProperty(a, ‘push‘, {
    value: function(){
     var arguments$1 = arguments;

    // avoid leaking arguments:
    // http://jsperf.com/closure-with-arguments
    var i = arguments.length;
    var args = new Array(i);
    while (i--) {
      args[i] = arguments$1[i];
    }
    var original = arrayProto[‘push‘];
    var result = original.apply(this, args);

    console.log("触发响应,比如更新视图");
    return result;

   },
    enumerable: true,
    writable: true,
    configurable: true
  });

 

vue 数组更新大概原理(仅供理解)

标签:return   this   数组   res   code   tab   pre   function   响应   

原文地址:http://www.cnblogs.com/adaBlog/p/6957051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!