原文地址: how-does-react-tell-a-class-from-a-function
本文地址: React是如何区分Class和Function?
边看边翻译 花了2h+… 如果你觉得读起来还算通顺不费事 那也算我为大家做了一点小贡献吧
React调用两者的不同之处
一起来看下这个 function 类型的 Greeting
组件:
1 | function Greeting() { |
React 同样支持将它定义为 class 类型:1
2
3
4
5class Greeting extends React.Component {
render() {
return <p>Hello</p>;
}
}
(直到最近 hooks-intro,这是使用state等特性的唯一方法。)
当你想渲染<Greeting />
组件时,你不必关心它是如何定义的:
1 | //类或者函数,都可以 |
但是,作为 React本身 是会认为这两个是有不同之处的。
如果Greeting
是一个函数,React 只需要直接调用它:
1 | // 你的代码 |
但是如果Greeting
是一个类,那么 React 就需要使用new
来实例化它,然后在实例上调用render
方法:1
2
3
4
5
6
7
8
9
10// 你的代码
class Greeting extends React.Component {
render() {
return <p>Hello</p>;
}
}
// React内
const instance = new Greeting(props); // Greeting {}
const result = instance.render(); // <p>Hello</p>
在这两种情况下,React
的目标是获取渲染节点(本例中,是<p> Hello </ p>
),但确切的步骤取决于Greeting
的类型。
那么React如何知道某个东西是class类型还是function类型呢?
事实上,这篇文章更多的是关于JavaScript而不是关于React。
如何你好奇React为何以某种方式运作,让我们一起挖掘其中的原理。
这是一段漫长的探求之旅。这篇文章没有太多关于React本身的信息,我们将讨论new
,this
,class
,arrow function
,prototype
,__ proto__
,instanceof
这些概念,以及这些东西如何在JavaScript中运作的机制。幸运的是,当你仅仅是使用React时,你不需要考虑这么多。但你如果要深究React……
(如果你真的只想知道答案,请拉动到文章最后。)
为什么要用不同的调用方式?
首先,我们需要理解以不同方式处理class和function的重要性。注意我们在调用类时如何使用new运算符:1
2
3
4
5
6// If Greeting is a function
const result = Greeting(props); // <p>Hello</p>
// If Greeting is a class
const instance = new Greeting(props); // Greeting {}
const result = instance.render(); // <p>Hello</p>
让我们大致的了解下new
在Javascript中做了什么:
在ES6之前,Javascript没有class这个概念。但是,可以使用纯函数表现出和class相似的模式。 具体来说,你可以使用new来调用类似类构造方法的函数,来表现出和class相似的模式1
2
3
4
5
6
7
8// 只是一个function
function Person(name) {
this.name = name;
}
var fred = new Person('Fred'); // ✅ Person {name: 'Fred'}
var george = Person('George'); // 🔴 不会如期工作
//你今天仍然可以写这样的代码!在 `DevTools` 中尝试一下。
如果不用new
修饰Person('Fred')
,Person内部的this
在里面会指向 window
或者 undefined
。结果就是代码会崩溃或者像给window.name
赋值一样愚蠢。
在调用之前添加new
,等于说:“嘿 JavaScript,我知道Person
只是一个函数,但让我们假装它是个类构造函数。 创建一个{}对象 并在Person
函数内将this
指向该对象, 这样我就可以赋值像this.name
这样的东西。然后把那个对象返回给我。”
上面这些就是new
操作符做的事情。
1 | var fred = new Person('Fred'); // `Person`内,相同的对象作为`this` |
同时new
操作符使上面的fred
对象可以使用Person.prototype
上的任何内容。
1 | function Person(name) { |
这是之前人们在JavaScript模拟类的方式。
可以看到的是在JavaScript早已有new
。但是,class
却是后来加入的特性。为了更明确我们的意图,重写一下代码:1
2
3
4
5
6
7
8
9
10
11class Person {
constructor(name) {
this.name = name;
}
sayHi() {
alert('Hi, I am ' + this.name);
}
}
let fred = new Person('Fred');
fred.sayHi();
在语言和API设计中把握开发人员的意图非常重要。
如果你编写一个函数,JavaScript就无法猜测你的意思是像alert()
一样被直接调用,还是像new Person()
那样充当构造函数。忘记添加new
会导致令人困惑的执行结果。
class语法让我们明确的告诉Javascript:“这不仅仅是一个函数 - 它是一个类,它有一个构造函数”。 如果在调用class时忘记使用new
,JavaScript抛出异常:1
2
3
4
5
6
7let fred = new Person('Fred');
// ✅ If Person is a function: works fine
// ✅ If Person is a class: works fine too
let george = Person('George'); // We forgot `new`
// 😳 If Person is a constructor-like function: confusing behavior
// 🔴 If Person is a class: fails immediately
这有助于我们尽早发现错误,而不是出现一些不符合预期的结果 比如this.name
被视为window.name
而不是george.name
。
但是,这意味着React
需要在调用任何class之前使用new
。它不能只是将其作为普通函数直接调用,因为JavaScript会将其视为错误!1
2
3
4
5
6
7
8class Counter extends React.Component {
render() {
return <p>Hello</p>;
}
}
// 🔴 React can't just do this:
const instance = Counter(props);
这意味着麻烦(麻烦就是在于React需要区分Class和Function……)。
探究React式如何解决的
babel之类编译工具给解决问题带来的麻烦
在我们探究React式如何解决这个问题时,需要考虑到大多数人都使用Babel之类的编译器来兼容浏览器(例如转义class等),所以我们需要在设计中考虑编译器这种情况。
在Babel的早期版本中,可以在没有new
的情况下调用类。但是通过生成一些额外的代码,这个情况已经被修复了:
1 | function Person(name) { |
你或许在打包文件中看到类似的代码,这就是_classCallCheck
函数所做的功能。 (您可以通过设置“loose mode”不进行检查来减小捆绑包大小,但这可能会使代码最终转换为真正的原生类变得复杂。)
到现在为止,你应该大致了解使用new
与不使用new
来调用某些内容之间的区别:
new Person() |
Person() |
|
---|---|---|
class |
✅ this is a Person instance |
🔴 TypeError |
function |
✅ this is a Person instance |
😳 this is window or undefined |
这之中的区别就是React为什么需要正确调用组件的重要原因。 如果您的组件被定义为类,React在调用它时需要使用new
。
那么问题来了 React是否可以判断某个东西是不是一个class?
没有那么容易!即使我们可以在JavaScript es6 中区别class 和 function,这仍然不适用于像Babel这样的工具处理之后的class。因为对于浏览器来说,它们只是单纯的function而已(class被babel处理后)。
Okay,也许React可以在每次调用时使用new
?不幸的是,这也并不总是奏效。
异常情况一:
作为一般function,使用new
调用它们会为它们提供一个对象实例作为this
。对于作为构造函数编写的函数(如上面的Person
),它是理想的,但它会给函数组件带来混乱:1
2
3
4function Greeting() {
// 我们不希望“this”在这里成为任何一种情况下的实例
return <p>Hello</p>;
}
虽然这种情况也是可以容忍的,但还有另外两个原因可以扼杀一直使用new
的想法。
异常情况二:
第一个是箭头函数(未被babel编译时)会使new
调用失效,使用new
调用箭头函数会抛出一个异常1
2const Greeting = () => <p>Hello</p>;
new Greeting(); // 🔴 Greeting is not a constructor
这种情况时是有意的,并且遵循箭头函数的设计。箭头函数的主要优点之一是它们没有自己的this
绑定 - 取而代之的是 this
被绑定到最近的函数体中。1
2
3
4
5
6
7
8
9
10
11
12
13class Friends extends React.Component {
render() {
const friends = this.props.friends;
return friends.map(friend =>
<Friend
// `this` is resolved from the `render` method
size={this.props.size}
name={friend.name}
key={friend.id}
/>
);
}
}
Okay,所以箭头功能没有自己的this
。 这意味着箭头函数无法成为构造者!
1 | const Person = (name) => { |
因此,JavaScript不允许使用new
调用箭头函数。如果你这样做,只会产生错误。这类似于JavaScript不允许在没有new
的情况下调用类的方式。
这很不错,但它也使我们在全部函数调用前添加new的计划失败。 React不可以在所有情况下调用new,因为它会破坏箭头函数!我们可以尝试通过缺少prototype
来判断出箭头函数:1
2(() => {}).prototype // undefined
(function() {}).prototype // {constructor: f}
但是这个不适用于使用babel
编译的函数。这可能不是什么大问题,但还有另一个原因让这种方法失败。
异常情况三:
我们不能总是使用new
的另一个原因是,这样做不支持返回字符串或其他原始类型。1
2
3
4
5
6function Greeting() {
return 'Hello';
}
Greeting(); // ✅ 'Hello'
new Greeting(); // 😳 Greeting {}
这再次与new
的设计奇怪表现有关。正如我们之前看到的那样,new
告诉JavaScript引擎创建一个对象,在函数内部创建该对象,然后将该对象作为new
的结果。
但是,JavaScript还允许使用new
调用的函数通过返回一些其他对象来覆盖new
的返回值。这可能对类似对象池这样的模式很有用:
1 | // Created lazily |
但是,如果函数的返回值不是对象,new
会完全忽略函数的返回值。如果你返回一个字符串或一个数字,就好像没有返回一样。1
2
3
4
5
6function Answer() {
return 42;
}
Answer(); // ✅ 42
new Answer(); // 😳 Answer {}
当使用new
调用函数时,无法从函数中读取原始返回值(如数字或字符串)。因此,如果React总是使用new,它将无法支持返回字符串类型的函数(组件)
这是不可接受的,所以我们得另寻他法。
解决方式
到目前为止我们了解到了什么? React需要用new
调用类(兼容Babel
情况),但它需要调用常规函数或箭头函数(兼容Babel)时不能使用new
。同时并没有可靠的方法来区分它们。
如果我们无法解决一个普遍问题,那么我们能解决一个更具体的问题吗?
将Component定义为class时,你可能希望继承React.Component
使用其内置方法(比如this.setState()
)。那么我们可以只检测React.Component子类,而不是尝试检测所有class吗?
剧透:这正是React所做的。
prototype
与 __proto__
也许,判断Greeting
是否是React component class的一般方法是测试Greeting.prototype instanceof React.Component
:1
2
3
4class A {}
class B extends A {}
console.log(B.prototype instanceof A); // true
我知道你在想什么。刚刚发生了什么?!要回答这个问题,我们需要了解JavaScript原型。
你可能熟悉原型链。JavaScript中的每个对象都可能有一个“原型”。当我们编写fred.sayHi()
但fred
对象没有sayHi
属性时,我们在fred
的原型上查找sayHi
属性。如果我们在那里找不到它,我们会看看链中的下一个原型–fred
的原型的原型。并以此类推。
令人困惑的是,类或函数的prototype属性并不指向该值的原型。 我不是在开玩笑。1
2
3
4function Person() {}
console.log(Person.prototype); // 🤪 Not Person's prototype
console.log(Person.__proto__); // 😳 Person's prototype
所以“原型链”更像是__proto __.__ proto __.__ proto__
而不是prototype.prototype.prototype
。我花了许多年才了解到这一点。
所有对象的 __proto__
都指向其构造器的prototype 函数或类的prototype
属性就是这样一个东西1
2
3
4
5
6
7
8function Person(name) {
this.name = name;
}
Person.prototype.sayHi = function() {
alert('Hi, I am ' + this.name);
}
var fred = new Person('Fred'); // Sets `fred.__proto__` to `Person.prototype`
而__proto__
链是JavaScript查找属性的方式:1
2
3
4
5
6
7
8fred.sayHi();
// 1. Does fred have a sayHi property? No.
// 2. Does fred.__proto__ have a sayHi property? Yes. Call it!
fred.toString();
// 1. Does fred have a toString property? No.
// 2. Does fred.__proto__ have a toString property? No.
// 3. Does fred.__proto__.__proto__ have a toString property? Yes. Call it!
事实上,除非您正在调试与原型链相关的内容,否则您几乎不需要直接在代码中修改__proto__
。如果你想在fred .__ proto__
上添加东西,你应该把它放在Person.prototype
上。它最初就是这么设计的。
甚至浏览器都不应该暴露__proto__
属性,因为原型链被设计为一个内部概念。但是有些浏览器添加了__proto__
,最终它被勉强标准化。
至今我仍然觉得“prototype
的属性没有给你一个值的原型“非常令人困惑(例如,fred.prototype
未定义,因为fred
不是一个函数)。就个人而言,我认为这是导致经验丰富的开发人员也会误解JavaScript原型的最大原因。
extends 与 原型链
这帖子有点长 不是吗?别放弃!现在已经讲了80%的内容了,让我们继续吧
我们知道,当说调用obj.foo
时,JavaScript实际上在obj
,obj .__ proto__
,obj .__ proto __.__ proto__
中寻找foo
,依此类推。
对于类来说原型链机制会更加复杂,但extends
会使类完美适用原型链机制。这也是React类的实例访问setState
之类的方法的原理:1
2
3
4
5
6
7
8
9
10
11
12
13
14class Greeting extends React.Component {
render() {
return <p>Hello</p>;
}
}
let c = new Greeting();
console.log(c.__proto__); // Greeting.prototype
console.log(c.__proto__.__proto__); // React.Component.prototype
console.log(c.__proto__.__proto__.__proto__); // Object.prototype
c.render(); // Found on c.__proto__ (Greeting.prototype)
c.setState(); // Found on c.__proto__.__proto__ (React.Component.prototype)
c.toString(); // Found on c.__proto__.__proto__.__proto__ (Object.prototype)
换句话说,类实例的__protp__
链会镜像拷贝类的继承关系:1
2
3
4
5
6
7
8
9
10// `extends` chain
Greeting
→ React.Component
→ Object (implicitly)
// `__proto__` chain
new Greeting()
→ Greeting.prototype
→ React.Component.prototype
→ Object.prototype
如此两个链(继承链 原型链)
instanceof 判断方式
由于__proto__
链镜像拷贝类的继承关系,因此我们可以通过Greeting
的原型链来判断Greeting
是否继承了React.Component
:1
2
3
4
5// `__proto__` chain
new Greeting()
→ Greeting.prototype // 🕵️ We start here
→ React.Component.prototype // ✅ Found it!
→ Object.prototype
方便的是,x instanceof Y
就是相同的搜索原理。它在x .__ proto__
链中寻找是否有Y.prototype
存在。
通常,它用于确定某些东西是否是类的实例:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25let greeting = new Greeting();
console.log(greeting instanceof Greeting); // true
// greeting (🕵️ We start here)
// .__proto__ → Greeting.prototype (✅ Found it!)
// .__proto__ → React.Component.prototype
// .__proto__ → Object.prototype
console.log(greeting instanceof React.Component); // true
// greeting (🕵️ We start here)
// .__proto__ → Greeting.prototype
// .__proto__ → React.Component.prototype (✅ Found it!)
// .__proto__ → Object.prototype
console.log(greeting instanceof Object); // true
// greeting (🕵️ We start here)
// .__proto__ → Greeting.prototype
// .__proto__ → React.Component.prototype
// .__proto__ → Object.prototype (✅ Found it!)
console.log(greeting instanceof Banana); // false
// greeting (🕵️ We start here)
// .__proto__ → Greeting.prototype
// .__proto__ → React.Component.prototype
// .__proto__ → Object.prototype (🙅 Did not find it!)
但它也可以用于确定一个类是否继承另一个类:1
2
3
4
5console.log(Greeting.prototype instanceof React.Component);
// greeting
// .__proto__ → Greeting.prototype (🕵️ We start here)
// .__proto__ → React.Component.prototype (✅ Found it!)
// .__proto__ → Object.prototype
这种判断方式就是是我们如何确定某些东西是React组件类还是一般函数。
React 判断方式
但这并不是React所做的。 😳
instanceof
解决方案的一个隐患是:当页面上有多个React副本时,我们正在检查的组件可能继承自另一个React副本的React.Component,这种instanceof方式就会失效。
在一个项目中混合使用React的多个副本是不好的方式,但我们应该尽可能避免出现由于历史遗留所产生的这种问题。 (使用Hooks,我们可能需要强制删除重复数据。)
另一种可能的骚操作是检查原型上是否存在render
方法。但是,当时还不清楚组件API将如何变换。每个判断操作都有成本我们不想添加多于一次的操作。如果将render定义为实例方法(例如使用类属性语法),这也不起作用。
因此,React为基本组件添加了一个特殊标志。React通过检查是该标志来判断一个东西是否是React组件类。
最初该标志在React.Component基础类本身上:1
2
3
4
5
6
7// Inside React
class Component {}
Component.isReactClass = {};
// We can check it like this
class Greeting extends Component {}
console.log(Greeting.isReactClass); // ✅ Yes
但是,我们想要判断的一些类实现没有复制静态属性(或设置__proto__
),因此标志丢失了。
这就是React将此标志移动到React.Component.prototype
的原因:1
2
3
4
5
6
7// Inside React
class Component {}
Component.prototype.isReactComponent = {};
// We can check it like this
class Greeting extends Component {}
console.log(Greeting.prototype.isReactComponent); // ✅ Yes
这就是React如何判断class的全部内容。
如今在React中使用就是isReactComponent
标志检查。
如果不扩展React.Component,React将不会在原型上找到isReactComponent
,也不会将组件视为类。现在你知道为什么Cannot call a class as a function
问题最受欢迎的回答是添加extends React.Component
。最后,添加了一个prototype.render
存在时,但prototype.isReactComponent
不存在的警告。
实际的解决方案非常简单,但我用大量的时间解释了为什么React最终采取这个解决方案,以及替代方案是什么。 你可能觉得博文这个解释过程有点啰嗦,
根据我的经验,开发库API经常会遇到这种情况。为了使API易于使用,开发者需要考虑语言语义(可能,对于多种语言,包括未来的方向)、运行时性能、是否编译情况的兼容、完整体系和打包解决方案的状态、 早期预警和许多其他事情。 最终结果可能并不优雅,但必须实用。
如果最终API是成功的,则用户永远不必考虑此过程。 取而代之的是他们只需要专注于创建应用程序。
但如果你也好奇……去探究其中的原因还是十分有趣的。