在es6模板字符串中使用此关键字并将该字符串传递给dangerouslySetInnerHtml

时间:2018-06-11 06:32:38

标签: javascript reactjs contenteditable

`<span>
        <span contentEditable="false">
          <select
              selected=${currentPlaceholder.selected.value}
              onchange ={this.handleDropDown(${index})}
              class="custom-dropdown"
          >
                ${optionsList}
          </select>
        </span>
      </span>`

我想将类函数传递给onchange属性,但此模板字符串将返回dangerouslySetInnerHTML。因此它说this.handleDropDown is not a function。 我不确定如何正确传递

enter image description here

0 个答案:

没有答案