React-select select 菜单列表支持 html 标签
React-select select menu list support html tag
我想知道是否可以在 react-select.
中启用 html 标签支持
我正在使用 promise 回调函数注入建议列表,并在结果中添加了 <em>
tag..
但是没有办法告诉 react-select 将其视为 html 标签。
怎么做?
您应该将其作为字符串处理,并使用 Dangerously Set innerHTML 将其显示在您的组件中。
您需要为此使用 optionRenderer 属性,并定义一个 returns 您的元素的自定义方法。这可以包含 html.
请参阅 react-select documentation 中的示例。
我想知道是否可以在 react-select.
中启用 html 标签支持我正在使用 promise 回调函数注入建议列表,并在结果中添加了 <em>
tag..
但是没有办法告诉 react-select 将其视为 html 标签。
怎么做?
您应该将其作为字符串处理,并使用 Dangerously Set innerHTML 将其显示在您的组件中。
您需要为此使用 optionRenderer 属性,并定义一个 returns 您的元素的自定义方法。这可以包含 html.
请参阅 react-select documentation 中的示例。