在react-native
中,如果其中Child
的类层次结构扩展了Parent
,为什么child
不会继承parent
&# 39; s进口?
示例:
父类:
import React from 'react';
import { StyleSheet, View, Alert } from 'react-native';
export default class ParentClass extends React.Component {
}
儿童班:
import ParentClass from '../screens/parentclass.js'
export default class ChildClass extends ParentClass {
}
child
类必须重新导入Stylesheet, View, and Alert
才能使用它们。
为什么会这样?有没有办法让child
和parent
类只需导入一次模块?