我正在尝试使用纯javascript Web组件构建无框架。我希望我的Web组件能够独立工作并在不同的站点上使用,但我还希望有两个组件能够进行通信。所以他们应该能够在没有紧密耦合的情况下进行沟通。
当我做Angular时,这很容易。我可以通过HTML属性将对象传递给组件,组件将其作为对象而不是字符串接收。但在纯JavaScript中,属性总是字符串。传递对象或以其他方式使Web组件彼此了解并能够进行通信的正确方法是什么?
答案 0 :(得分:4)
使用Web Components,您可以按照所述方式通过属性传递对象,但您也可以使用方法传递对象,或者通过属性(实际上是setter方法)传递对象。
<my-component id="comp1"></my-component>
...
var myObject = { y:1, y:2 }
comp1.value = myObject //via property
comp1.setValue( myObject ) //via method
答案 1 :(得分:3)
以下是一个包含两个原生V1 Web组件的示例应用。 <component-1>
可以与<component-2>
对话,因为您向<component-1>
提供了ID,并且该ID是指<component-2>
上设置的ID。
这类似于<label>
标记与for
属性一起使用的方式。
<component-1 link-id="c2"></component-1>
<hr/>
<component-2 id="c2"></component-2>
// Class for `<component-1>`
class Component1 extends HTMLElement {
constructor() {
super();
this._linkedComponent = null;
this._input = document.createElement('input');
this._input.addEventListener('focus', this._focusHandler.bind(this));
this._button = document.createElement('button');
this._button.textContent = 'Add';
this._button.addEventListener('click', this._clickHandler.bind(this));
}
connectedCallback() {
this.appendChild(this._input);
this.appendChild(this._button);
}
static get observedAttributes() {
return ['link-id'];
}
attributeChangedCallback(attrName, oldVal, newVal) {
if (oldVal !== newVal) {
if (newVal === null) {
this._linkedComponent = null;
}
else {
this._linkedComponent = document.getElementById(newVal);
}
}
}
_clickHandler() {
if (this._linkedComponent) {
this._linkedComponent.value = this._input.value;
}
}
_focusHandler() {
this._input.value = '';
}
}
// Class for `<component-2>`
class Component2 extends HTMLElement {
constructor() {
super();
this._textArea = document.createElement('textarea');
this._textArea.setAttribute('style','width:100%;height:200px;');
}
connectedCallback() {
this.appendChild(this._textArea);
}
set value(newValue) {
this._textArea.value += (newValue+'\n');
}
}
customElements.define('component-1', Component1);
customElements.define('component-2', Component2);
<component-1>
只会与<component-2>
进行对话,如果有一个组件具有通过其<component-1>
属性提供给link-id
的ID。