此文章是翻译JSX In Depth这篇React(版本v16.2.0)官方文档。
JSX In Depth
从根本上说,JSX 只是为React.createElement(component, props, ...children)
函数提供了语法糖(syntactic sugar) 。这种JSX 代码:
<MyButton color="blue" shadowSize={2}>
Click Me
</MyButton>
编译成:
React.createElement(
MyButton,
{color: 'blue', shadowSize: 2},
'Click Me'
)
如果没有子节点你也可以使用自闭合(self-closing)标签形式。像这样:
<div className="sidebar" />
编译成:
React.createElement(
'div',
{className: 'sidebar'},
null
)
如果你想要验证一些特殊的JSX 如何转换成JavaScript,你可以在the online Babel compiler 进行试验。
Specifying The React Element Type
JSX 标签的第一部分决定了React 元素的类型。
大写类型(Capitalized types)表明JSX 标签是React 组件。这些标签直接根据命名变量进行编译,所以如果你使用JSX 的<Foo />
表达式,Foo
必须在作用域内。
React Must Be in Scope
既然编译JSX 需要调用React.createElement
,这个React
库也必须在你的JSX 代码的作用域内。
例如,在代码中都是必须被引入的(import),即使React
和CustomButton
没有被直接引用:
import React from 'react';
import CustomButton from './CustomButton';
function WarningButton(){
// return React.createElement(CustomButton, {color: 'red'}, ull);
return <CustomButton color="red"/>;
}
如果你没有使用JavaScript 打包器(bundler)而是从一个脚本标签(script tag)加载React,React 已经作为一个全局变量在作用域中了。
Using Dot Notation for JSX Type
在JSX 中你也可以使用dot-notation 的形式引用一个React 组件。如果你有一个模块导出了许多React 组件是非常方便的。例如,如果MyComponents.DatePicker
是一个组件,在JSX 中你可以直接使用它:
import React from 'react';
const MyComponents = {
DatePicker: function(props){
return <div>Imagine a {props.color} datepicker here.</div>;
}
}
function BlueDatePicker() {
return <MyComponents.DatePicker color="blue" />;
}
User-Defined Components Must Be Capitalized
当一个元素类型是以一个小写字母开始,它表示一个内置(built-in)组件像<div>
和<span>
是作为div
和span
这个字符串传入React.createElement
。类型以大写字母开始就像<Foo />
编译到React.createElement(Foo)
并且响应到一个组件定义或者从JavaScript 文件中被引入。
我们建议使用大写字母来命名组件。如果你有一个组件是以小写字母开始的,在JSX 中使用之前需要将其赋给一个大写字母开头的变量(a capitalized variable)。
例如,此代码不会像预期的那样运行:
import React from 'react';
// Wrong! This is a component and should have been capitalized
function hell(props) {
// Correct! This use of <div> is legitimate because div is a valid HTML tag:
return <div>Hello {props.toWhat}</div>;
}
function HelloWorld() {
// Wrong! React thinks <hello /> is an HTML tag because it's not captialized;
return <hello toWhat="World" />;
}
为了解决它,我们需要将hello
重名为Hello
同时使用<Hello />
来引用它:
import React from 'react';
// Correct! This is a component and should have been capitalized
function Hello(props) {
// Correct! This use of <div> is legitimate because div is a valid HTML tag:
return <div>Hello {props.toWhat}</div>;
}
function HelloWorld() {
// Correct! React knows <Hello /> is a component because it's not captialized;
return <Hello toWhat="World" />;
}
Choosing the Type at Runtime
你不能使用一般的表达式作为React 元素类型。如果需要使用一个一般的表达式指示元素的类型,只需要将其赋值给一个大写字母开头的变量。这通常在你需要基于一个props 去渲染不同的组件时发生:
import React from 'react';
import { PhotoStory, VideoStory } from './stories';
const components = {
photo: PhotoStory,
vidoe: VideoStory
}
function Story(props) {
// Wrong! JSX type can't be an express
return <components[props.storyType] story={props.story} />;
}
为了解决它,我们将其赋值给一个大写字母开头的变量:
import React from 'react';
import { PhotoStory, VideoStory } from './stories';
const components = {
photo: PhotoStory,
vidoe: VideoStory
}
function Story(props){
// Correct! JSX type can be a captialized variable
const SpecificStory = components[props.storyType];
return <SpecificStory story={props.story} />;
}
Props in JSX
在JSX 中有几种不同的方式去规定props。
JavaScript Expressions as Props
你可以使用{}
将任意JavaScript 表达式作为props 传入。例如,在JSX 中:
<MyComponents foo={1 + 2 + 3 + 4} />
对于MyComponent
,这个props.foo
的值将是计算表达式1 + 2 + 3 + 4
得到的结果10
。
在JavaScript 中if
语句和foo
循环不是表达式,所以它们不能直接在JSX 中使用。 相反,你需要将它们在代码中使用。例如:
function NumberDescriber(props) {
let description;
if (props.number % 2 == 0) {
description = <strong>even</strong>;
} else {
description = <i>odd</i>;
}
return <div>{props.number} is an {description} number</div>;
}
你可以在conditional rendering 和loops 相关章节了解更多。
String Literals
你可以将字符串字面量作为props 传入。下面两种JSX 表达式是等价的:
<MyComponent message="hello world" />
<MyComponent message={'hello world'} />
当你传入一个字符串字面量时,它的只是HTML 转义(HTML-unescaped)。所以下面两种JSX 表达式是等价的:
<MyComponent message="<3" />
<MyComponent message={'<3'} />
这两中行为并不相关。在这里只是为完整性而被提及。
Props Default to "True"
如果你没有为一个prop 传值,它的默认值是true
。下面两种JSX 表达式是等价的:
<MyTextBox autocomplete />
<MyTextBox autocomplete={true} />
通常,我们不建议使用这种方式因为这会使ES6 object shorthand {foo}
是{foo:foo}
的简写而不是{foo:true}
产生困惑。这种行为在这只是为了匹配HTML的行为。
Spread Attribtes
如果你已经有了对象作为props
,并且你想将在JSX中传入,你可以使用...
这种的“spread” operator 将整个props 对象传入。下面两种components 是等价的:
function App1() {
return <Greeting firstname="Ben" lastName="Hector" />;
}
function App2() {
conost props = {firstname: 'Ben', lastName='Hector'}
return <Greeting {...props} />;
}
当使用spread operator 是,你还可以选择你的组件将使用的特定的props ,同时传递其他所有props 。
const Button = props => {
const { kind, ...other } = props;
const className = kind === "primary" ? "PrimaryButton" : "SecondaryButton";
return <button className={className} {...other} />;
};
const App = () => {
return (
<div>
<Button kind="primary" onClick={() => console.log("clicked!")}>
Hello World!
<Button>
</div>
);
};
在上面例子中,kind
被安全的消费,并且没有被传递到DOM 中的<button>
元素上。所有其他props 通过...other
对象传入,使得组件非常灵活。你可以看到它传入了一个onClick
和children
props。
Spread attributes 是非常有用的,但是,由于非常容易将不相关的props 传入不关心它们的组件,或者传入无效的HTML 特性在DOM 上。我们建议你谨慎使用这种语法。
Children in JSX
在包含一个开始标签和一个结束标签的JSX 表达式中,在标签之间的内容可以通过一个特殊的prop 传入:props.children
。有几种不同的方式来传入子节点:
String Literals
你可以在开始标签和结束标签中传入一个字符串,props.children
就是是那个字符串。这对多数HTML 内置元素是有用的。例如:
<MyComponent>Hello World</MyComponent>
这是有效的JSX,并且在MyComponent
中的props.children
是这个Hello world!
字符串。HTML 是未转义的,所以你可以像写HTML 方式写JSX:
<div>This is valid HTML & JSX at the same time.</div>
JSX 会移除一行中开始和结尾的空格。它也移除空行。邻接标签的新行也会被移除;新行在字符串字面量中间出现也会变成一个空格。所以下面这些都会渲染成一样:
<div>Hello World</div>
<div>
Hello World
</div>
<div>
Hello
World
</div>
<div>
Hello World
</div>
JSX Children
你可以提供更多的JSX 元素作为子节点。这对于嵌套的组件是非常有用的:
<MyContainer>
<MyFirstComponent />
<MySecondComponent />
</MyContainer>
你可以混合不同类型的子节点,所以你可以和JSX 子节点一起使用字符串字面量。这是另一种类似HTML的JSX,所以它们都是有效的JSX 和HTML:
<div>
Here is a list:
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
React 组件也可以返回一个元素数组:
render() {
// No need to wrap list items in an extra element!
return [
// Don't forget the keys :)
<li key="A">First Item</li>
<li key="B">Second Item</li>
<li key="C">Third Item</li>
];
}
JavaScript Expressions as Children
你要将任何JavaScript 表达式通过包裹在{}
中将其作为子节点传入。例如:所以下面两种JSX 表达式是等价的:
<MyComponent>foo</MyComponent>
<MyComponent>{'foo'}</MyComponent>
这对渲染任意长度的JavaScript 表达式列表是非常有用的。例如:下面渲染一个HTML 列表:
function Item(props) {
return <li>{props.message}</li>;
}
function TodoList() {
const todos = ['finish doc', 'submit pr', 'nag dan to review'];
return (
<ul>
{todos.map((message) => <Item key={message} message={message} />)}
</ul>
);
}
JavaScript 表达式可以和其它类型的子节点混合。它通常对于字符串模版(string templates)是非常有用的:
function Hello(props) {
return <div>Hello {props.addressee}</div>;
}
Functions as Children
通常,在JSX 中的JavaScript 表达式被计算成字符串、React 原始或者是这些东西的列表。然而,props.children
工作就像任何其它的prop ,它可以传入任何类型的数据,不仅仅是React 知道如何去渲染的类型。例如,你有一个自定义的组件,你可以拥有它,将props.children
作为一个回调函数传入:
// Calls the children callback numTimes to produce a repeated component
function Repeat(props) {
let items = [];
for (let i = 0; i < props.numTimes; i++ ) {
items.push(props.children(i));
}
return <div>{items}</div>;
}
function ListOfTenThings() {
return (
<Repeat numTimes={10}>
{(index) => <div key={index}>This is item {index} in the list</div>}
</Repeat>
);
}
传入自定义组件的子节点可以是任何东西,只要组件能够在渲染之前将其转成React 可以理解的东西。这种使用方式并不常见,但是如果你想要扩展JSX 的能力时是非常有用的。
Booleans, Null, and Undefined Are Ignored
false
、null
、undefined
、和true
是有效的子节点。 它们只不过都不渲染。这些JSX 表达式都渲染成同一样东西:
<div />
<div></div>
<div>{false}</div>
<div>{null}</div>
<div>{true}</div>
这对于条件渲染React 元素是有用的。如果showHeader
为true
那么JSX 只渲染<Header />
:
<div>
{showHeader && <Header />}
<Content />
</div>
一个附加说明就是"falsy" values 就像0
number 仍然可以被React 渲染。例如,下面的代码不会按照你期待的那样运行,因为0
会被打印当props.messages
是一个空数组时:
<div>
{props.messages.length &&
<MessageList messages={props.messages} />
}
</div>
为了解决它,请确保&&
之前的表达式总是为布尔值:
<div>
{props.messages.length > 0 &&
<MessageList messages={props.messages}
}
</div>
相反的,如果你想将false
、true
、null
或者是undefined
作为一个值展示出来,你可以使用convert it to string:
<div>
My JavaScript variable is {String(myVariable)}.
</div>