好像bind()
是Web Components规范的一部分,Polymer出于各种原因扩展了with Node.bind()
。
这是docs on bindProperty()
。这仅仅是bind()
的内部实现/ polyfill吗?因此开发人员应该使用bind()
而不是bindProperty()
吗?
最佳答案
答案在bind
-line 56的源代码中(下面的完整代码段)。 bind
函数在那里调用内部bindProperty
函数。 bind
在bindProperty
之上所做的所有工作确保给定属性存在。
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
,但是除非您可以确保要绑定的属性存在,否则我不建议您使用。