我正在使用stencil.js创建一个与框架无关的Web组件,并包含一些ionic4 Web组件,包括<ion-input>
ion-input
的文档显示了访问本地getInputElement() => Promise<HTMLInputElement>
的方法<input>
,但是我没有找到使用它来暴露组件内部元素的正确方法。 / p>
getInputElement
如何使用?
@Component({
tag: 'my-component',
styleUrl: 'my-component.css',
shadow: true
})
export class MyComponent {
@Element() el: HTMLElement;
@Prop .... ///some props
@State ... // some state
componentDidLoad(){}
render() (
<div className="foo">
<ion-item>
<ion-label> {this.someProp}</ion-label>
<ion-input
value={this.someProp}
clear-input={this.someProp}
onInput={this.handleInput} />
</ion-item>
<div>...more</div>
</div>
)
}
答案 0 :(得分:1)
您可以使用ref
属性来引用JSX元素。例如:
<ion-input ref={input => this.ionInput = input}
然后,使用一种组件方法,您可以以this.ionInput.getInputElement()
的身份访问它
在https://stenciljs.com/docs/templating-jsx#getting-a-reference-to-a-dom-element上查看更多信息
答案 1 :(得分:1)
我假设您可以使用ref
功能来做类似的事情(您可能应该输入以下内容):
ionInputElement;
@Element() el: HTMLElement;
@Prop .... ///some props
@State ... // some state
componentDidLoad(){
this.ionInputElement.getInputElement().then((el) => this.el = el);
}
render() {
return (
<div className="foo">
<ion-item>
<ion-label> {this.someProp}</ion-label>
<ion-input ref={(el) => this.ionInputElement = el}
value={this.someProp}
clear-input={this.someProp}
onInput={this.handleInput} />
</ion-item>
<div>...more</div>
</div>
);
}