我正在使用以下语句导入
import React, { Component } from 'react';
,我想使用unmountComponentAtNode
,但继续遇到错误
对象不支持属性或方法'UnmountComponentAtnode'
react.unmountcomponentatnode(document.getElementById('root'));
我正在使用React库的旧版本(15.4.1)。
所以我应该如何致电unmountComponentAtNode
,以免出现错误:
unmountComponentAtnode不会被" React"?
导出
我应该导入什么,以免出现错误?
v15.4的重大变化是反应和反应的分离。UnmountComponentAtnode()成为一种反应的方法。使用:
ReactDOM.unmountComponentAtNode(document.getElementById('root'));