好像bind()是Web Components规范的一部分,Polymer出于各种原因扩展了with Node.bind()

这是docs on bindProperty()。这仅仅是bind()的内部实现/ polyfill吗?因此开发人员应该使用bind()而不是bindProperty()吗?

最佳答案

答案在bind-line 56的源代码中(下面的完整代码段)。 bind函数在那里调用内部bindProperty函数。 bindbindProperty之上所做的所有工作确保给定属性存在。

bind: function(name, observable, oneTime) {
var property = this.propertyForAttribute(name);
if (!property) {
  // TODO(sjmiles): this mixin method must use the special form
  // of `super` installed by `mixinMethod` in declaration/prototype.js
  return this.mixinSuper(arguments);
} else {
  // use n-way Polymer binding
  var observer = this.bindProperty(property, observable, oneTime);
  // NOTE: reflecting binding information is typically required only for
  // tooling. It has a performance cost so it's opt-in in Node.bind.
  if (Platform.enableBindingsReflection && observer) {
    observer.path = observable.path_;
    this._recordBinding(property, observer);
  }
  if (this.reflect[property]) {
    this.reflectPropertyToAttribute(property);
  }
  return observer;
}


因此,可以使用bindProperty,但是除非您可以确保要绑定的属性存在,否则我不建议您使用。

09-11 14:09