当前位置:   article > 正文

ArrayProxy-Emberjs

proxy(array)

ember 2.18版本API翻译之Ember.ArrayProxy

import ArrayProxy from '@ember/array/proxy';
ArrayProxy(数组代理)包装实现Ember.Array和/或Ember.MutableArray的任何其他对象,转发所有请求。 这对于大量绑定用例或其他能够交换基础数组的情况非常有用非常有用。对于大量的绑定或其他会交换出底层数组的情况非常有用。
  1. let pets = ['dog', 'cat', 'fish'];
  2. let ap = Ember.ArrayProxy.create({ content: Ember.A(pets) });
  3. ap.get('firstObject'); // 'dog'
  4. ap.set('content', ['amoeba', 'paramecium']);
  5. ap.get('firstObject'); // 'amoeba'

这个类同样适用于当被访问时,改变数组的内容。可以通过重写objectAtContent来做:

  1. let pets = ['dog', 'cat', 'fish'];
  2. let ap = Ember.ArrayProxy.create({
  3. content: Ember.A(pets),
  4. objectAtContent: function(idx) {
  5. return this.get('content').objectAt(idx).toUpperCase();
  6. }
  7. });
  8. ap.get('firstObject'); // . 'DOG'

原文链接

转载于:https://www.cnblogs.com/AliceX-J/p/8268657.html

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号