离子输入获取元素参考香草js

时间:2019-04-30 15:25:22

标签: ionic-framework ionic4 stenciljs

我正在使用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>
    )
}

2 个答案:

答案 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>
  );
}