文件:Profile.js
export default function Profile({isPacked = true,head,stlyeTmp,src,size = 80}) {
if (isPacked) {
head = head + " ?";
}
return (
<div>
<h1>{head}</h1>
<img
src={src}
alt="Katherine Johnson"
width={size}
style={stlyeTmp}
/>
</div>
)
}
export function Gallery() {
return ...
}
export
:组件可导出default
:默认导出组件(一个文件中只能有一个默认导出的组件,通常为文件名!)function
:表明这是个组件Profile
:组件名必须以大写字母开头{head,src,size = 80}
:参数(size
默认值80)return
:返回一个JSX标签,单行时省略()
{}
嵌入JS表达式export default function Profile({isPacked,recipes}) {
return (
<div>
{isPacked ? (<h1>{head}</h1>) : (head)}
{isPacked && 'isPacked为true时才显示'}
{recipes.map(recipe =>
<div key={recipe.id}>{recipe.name}
{recipe.ings.filter((ing,i) => i > 4)}
</div>
)}
</div>
)
}
{isPacked ? (<h1>{head}</h1>) : (head)}
:三元组运算{isPacked && 'isPacked为true时才显示'}
:逻辑与运算数组.map
:遍历每个元素(参数a
:a为当前元素;参数(a,b)
:a为当前元素,b为元素下标);每个元素必须有唯一key
数组.filter
:返回条件为true的元素文件:App.js
import Profile from './Profile.js';
import { Gallery } from './Profile.js';
const baseUrl = 'https://i.imgur.com/MK3eW3Am';
export default function App() {
return (
<section>
<Profile head='标题' src={baseUrl + '.jpg'} size={100}
stlyeTmp={{
backgroundColor: 'black',
color: 'pink'
}}/>
<Gallery />
</section>
);
}
语法 | 导出声明 | 导入声明 |
---|---|---|
默认 | export default function Profile(){} | import Profile from './Profile.js'; 导入Profile.js 中的默认导出组件 |
命名 | export function Gallery() {} | import { Gallery } from './Profile.js'; 导入Profile.js 中的非默认的导出组件,必须使用{} |
{ backgroundColor: 'black', color: 'pink' }
是一个对象,和100等价)<Profile head='HHHH' src={baseUrl + '.jpg'} size={100}
stlyeTmp={{
backgroundColor: 'black',
color: 'pink'
}}/>
<Card>
<Avatar />
</Card>
<Card>
<Profile />
</Card>
function Card({ children }) {
return (
<div className="card">
{children}
</div>
);
}
set状态
或useEffect
去更改数据!(因为直接修改的代码会因渲染次数、渲染顺序导致不可预测性!)