簡體   English   中英

Webcomponent自定義元素傳遞函數onClick

[英]Webcomponent Custom Element pass function onClick

我想使用ReactJS將函數傳遞給自定義元素

ReactJS組件

import React from 'react';
import './SampleComponent';

export  class Button extends React.Component {

  handleClick = (event) => {
    console.log(event)
  }

  render() {

    return (
      <div>
        <sample-component onclick="handleClick"></sample-component>
      </div>
    )
  }
};

自訂元素

class SampleComponent extends HTMLElement {
  static get observedAttributes() {

  }

  // custom methods
  render() {
    this.innerHTML = `Custom Element`;
  }

  // lifecycle hooks
  connectedCallback() {
    this.render();
  }

}

window.customElements.define('sample-component', SampleComponent);

據我了解,當我傳遞onclick函數handleClick JS時,它將在“自定義元素”實現中進行搜索(這就是為什么在控制台中出現錯誤)。 那么如何傳遞函數呢? 我嘗試了"this.handle"但是也沒有用。

由於反應文檔,您的html看起來應該像這樣

<sample-component onClick={handleClick}></sample-component>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM