React 之技术详解 (三) - 深入理解 JSX
JSX 作为描述组件内容的数据结构,为 JS 赋予了更多视觉表现力。在 React 中我们大量使用。在深入源码之前,有些疑问我们需要先解决:
- JSX 和 Fiber 节点是同一个东西么?
- React Component、React Element 是同一个东西么,他们和 JSX 有什么关系?
JSX 简介
相信作为 React 的使用者,你已经接触过 JSX。如果你还不了解他,可以看下官网对其的描述。
JSX 在编译时会被 Babel 编译为 React.createElement 方法
。
这也是为什么在每个使用 JSX 的 JS 文件中,你必须显式的声明:
import React from 'react';
否则在运行时该模块内就会报未定义变量 React 的错误
。
JSX 并不是只能被编译为 React.createElement 方法,你可以通过@babel/plugin-transform-react-jsx
插件显式告诉 Babel 编译时需要将 JSX 编译成什么函数的调用 (默认为React.createElement) 。
比如在 preact 这个类 React 库中,JSX 会被编译为一个名为 h
的函数调用。
// 编译前
<p>KaSong</p>
// 编译后
h("p", null, "Lu Min");
React.createElement
既然 JSX 会被编译为 React.createElement,让我们看看他做了什么:
export function createElement(type, config, children) {
let propName;
const props = {};
let key = null;
let ref = null;
let self = null;
let source = null;
if (config != null) {
// 将 config 处理后赋值给 props
// ...省略
}
const childrenLength = arguments.length - 2;
// 处理 children,会被赋值给props.children
// ...省略
// 处理 defaultProps
// ...省略
return ReactElement(
type,
key,
ref,
self,
source,
ReactCurrentOwner.current,
props,
);
}
const ReactElement = function(type, key, ref, self, source, owner, props) {
const element = {
// 标记这是个 React Element
$$typeof: REACT_ELEMENT_TYPE,
type: type,
key: key,
ref: ref,
props: props,
_owner: owner,
};
return element;
};
我们可以看到,React.createElement()
最终会调用 ReactElement()
返回一个包含组件数据的对象,该对象有个参数 $$typeof: REACT_ELEMENT_TYPE 标记了该对象是个 React Element
。
所以调用 React.createElement 返回的对象就是 React Element 么?
React 提供了验证合法 React Element 的全局 API React.isValidElement()
,我们看下他的实现:
export function isValidElement(object) {
return (
typeof object === 'object' &&
object !== null &&
object.$$typeof === REACT_ELEMENT_TYPE
);
}
可以看到,$$typeof === REACT_ELEMENT_TYPE 的 非 null object 就是一个合法的 React Element。换言之,在 React 中,所有 JSX 在运行时的返回结果 (即 React.createElement() 的返回值) 都是 React Element。
那么 JSX
和 React Component
的关系呢?
React Component
在 React 中,我们常使用 ClassComponent
与 FunctionComponent
构建组件。
class AppClass extends React.Component {
render() {
return <p>Lu Min</p>
}
}
console.log('这是 ClassComponent:', AppClass);
console.log('这是 Element:', <AppClass/>);
function AppFunc() {
return <p>Lu Min</p>;
}
console.log('这是 FunctionComponent:', AppFunc);
console.log('这是 Element:', <AppFunc/>);
我们可以从控制台打印的对象看出,ClassComponent
对应的 Element 的 type 为 AppClass
自身。
{
$$typeof: Symbol(react.element),
key: null,
ref: null,
props: { … },
type: class AppClass,
…
}
FunctionComponent 对应的 Element 的 type 为 AppFunc
自身,如下所示:
{
$$typeof: Symbol(react.element),
key: null,
ref: null,
props: { … },
type: ƒ AppFunc(),
…
}
值得注意的一点,由于
AppClass instanceof Function === true;
AppFunc instanceof Function === true;
所以无法通过引用类型区分 ClassComponent 和 FunctionComponent。
React 通过 ClassComponent 实例原型上的 isReactComponent
变量判断是否是 ClassComponent。
ClassComponent.prototype.isReactComponent = {};
JSX 与 Fiber 节点
从上面的内容我们可以发现,JSX 是一种描述当前组件内容的数据结构,他不包含组件 schedule、reconcile、render 所需的相关信息。
比如如下信息就不包括在 JSX 中:
- 组件在更新中的优先级;
- 组件的 state;
- 组件被打上的用于 Renderer 的标记; 这些内容都包含在 Fiber 节点中。
所以,在组件 mount 时,Reconciler 根据 JSX 描述的组件内容生成组件对应的 Fiber 节点。
在 update 时,Reconciler 将 JSX 与 Fiber 节点保存的数据对比,生成组件对应的 Fiber 节点,并根据对比结果为 Fiber 节点打上标记。