0
創建DOM如何改造這個:ReactJS:在飛行
{dataFormat: 'hello my [friend=https://en.wikipedia.org/wiki/Friendship]'}
這樣:
<div>
hello my <a onClick={...} href="https://en.wikipedia.org/wiki/Friendship">friend</a>
</div>
我需要以某種方式能夠掃描一個字符串和動態創建鏈接。任何想法?
dataFormat可以在「常規」文本和鏈接之間包含多個具有未知順序的鏈接。
你試過了嗎?使用'React.createElement'而不是JSX這非常簡單。 –
是的,我想,使用正則表達式。你能否詳細說明你的建議? – Guy