我有兩個數組,一個是url,另一個是內容。 他們看起來像這樣:如何在同一時間映射兩個數組?
const link = { 'www.test0.com', 'www.test1.com', 'www.test2.com' }
const content = { 'this is test0 content', 'this is test1 content', 'this is test2 content' }
我該如何映射兩個陣列上在同一時間,在我的新創建的元素用自己的價值?
我需要使用我的reactplayer的url值和內容值作爲播放器下方的文本。
因此,它應該是這個樣子:
<Reactplayer url"link0" />
<ControlLabel>content0</ControlLabel>
這可能嗎?什麼是更好的設置方法?
我以爲這樣會更好。但我還沒有想出如何以這種方式保存我的數據。我實際上在這裏創建了一個關於此問題的其他問題:http://stackoverflow.com/questions/41310802/what-is-the-best-way-to-save-my-dynamicly-created-data-using-react-and-的javascrip – Deelux