是什么样的,它有什么作用达特“Expando的”功能?(What is the Dart “Expa

2019-07-03 19:33发布

已经看到最近与飞镖使用的“Expando的”一词。 听起来不错。 该API并没有给我提供多少线索的。

一个例子或两个可能是最有帮助的!

(不知道这是相关的,但我最渴望的方式方法(吸气)和/或变量添加到一个类希望这可能是解决这一问题的关键(提示:我现在用的是Nosuchmethod方法现在希望能够返回unfound方法的价值。))

提前致谢,

_swarmii

Answer 1:

expandos将允许你对象与其它对象相关联。 这种情况的一个非常有用的实施例是一个HTML DOM元素,它本身不能是子类。 让我们做一个顶级的expando添加一些功能的元素 - 在这种情况下,函数签名typedef语句给出:

typedef CustomFunction(int foo, String bar);

Expando<CustomFunction> domFunctionExpando = new Expando<CustomFunction>();

现在使用它:

main(){
   // Assumes dart:html is imported
   final myElement = new DivElement();

   // Use the expando on our DOM element.
   domFunctionExpando[myElement] = someFunc;

   // Now that we've "attached" the function to our object,
   // we can call it like so:
   domFunctionExpando[myElement](42, 'expandos are cool');
}

void someFunc(int foo, String bar){
  print('Hello. $foo $bar');
}


Answer 2:

只是为了澄清的expando和地图之间的区别:作为报道组 ,为Expando具有弱引用
这意味着密钥可以被垃圾收集,即使它仍然存在于的expando(只要没有其他引用它)。

对于其他所有意图和目的这是一个地图。



Answer 3:

我用它玩一点点。 下面是我得到了什么。

import 'dart:html';

const String cHidden = 'hidden';

class ExpandoElement {
  static final Expando<ExpandoElement> expando =
      new Expando<ExpandoElement>("ExpandoElement.expando");

  final Element element;

  const ExpandoElement._expand(this.element);

  static Element expand(Element element) {
    if (expando[element] == null)
      expando[element] = new ExpandoElement._expand(element);
    return element;
  }

//  bool get hidden => element.hidden; // commented out to test noSuchMethod()
  void set hidden(bool hidden) {
    if (element.hidden = hidden)
      element.classes.add(cHidden);
    else
      element.classes.remove(cHidden);
  }

  noSuchMethod(InvocationMirror invocation) => invocation.invokeOn(element);
}
final Expando<ExpandoElement> x = ExpandoElement.expando;
Element xquery(String selector) => ExpandoElement.expand(query(selector));

final Element input = xquery('#input');

void main() {
  input.classes.remove(cHidden);
  assert(!input.classes.contains(cHidden));

  input.hidden = true;
  assert(x[input].hidden); // Dart Editor warning here, but it's still true
  assert(!input.classes.contains(cHidden)); // no effect

  input.hidden = false;
  assert(!x[input].hidden); // same warning, but we'll get input.hidden via noSuchMethod()
  assert(!input.classes.contains(cHidden));

  x[input].hidden = true;
  assert(input.hidden); // set by the setter of ExpandoElement.hidden
  assert(input.classes.contains(cHidden)); // added by the setter
  assert(x[input].hidden);
  assert(x[input].classes.contains(cHidden)); // this is input.classes

  x[input].hidden = false;
  assert(!input.hidden); // set by the setter
  assert(!input.classes.contains(cHidden)); // removed by the setter
  assert(!x[input].hidden);
  assert(!x[input].classes.contains(cHidden));

  // confused?
  assert(input is Element);
  assert(x[input] is! Element); // is not
  assert(x[input] is ExpandoElement);
  assert(x is Expando<ExpandoElement>);
}


文章来源: What is the Dart “Expando” feature about, what does it do?