我想通過ImageText
組件中的道具傳遞兩個參數。
我不確定它是正確的方法還是我必須創建一個映射然後傳遞它。傳遞多個道具到React組件
import React, { PropTypes, Component } from 'react'
const ImageText =() => (
<div className="img-with-text">
<img className="img" src={props.imageUrl} />
<p className="txt">{props.imageText}</p>
</div>
);
export default ImageText;
調用從另一個該組件如下
<ImageText imageUrl="/js.com" imageText="food"/>
但拋出的錯誤作爲
Uncaught (in promise) ReferenceError: props is not defined
at ImageText
傳遞函數參數中的道具 –