在RN 25版本之前,旧版本的React是从react-native 中import的,
如果升级完依赖之后,直接运行项目之后会得到一个报错信息:
Seems you’re trying to access ‘ReactNative.Component’ from the ‘react-native’ pakeage.
Perhaps you meant to access ‘React.Component’ from the ‘React’ package instead?
For example, instead of :
import React, { Component, View } from ‘react-native’;
you should now:
import React, { Component } from ‘react’;
import { View } from ‘react-native’;
…..
修改js格式如下:
import React, {
Component,
} from 'react';
import {
AppRegistry,
StyleSheet,
Image,
View,
} from 'react-native';
本文介绍如何解决从react-native导入React Native.Component的问题。在RN25版本后,正确的做法是从'react'包导入React.Component,而react-native包仅用于特定组件如View等。
1万+

被折叠的 条评论
为什么被折叠?



