标签: reactjs ecmascript-6 jsx
我,我在JSX,ES6的新项目中工作并做出反应。在文件组件中,我发现了这个声明:
export default class Table<T> extends React.Component<TableProps<T>, any> {
我在http://exploringjs.com/es6/ch_classes.html或其他网站es6中搜索过,但我找不到任何信息。另外链接到阅读说明对我有帮助。
<T>
AAAA<BBB
, any >
答案 0 :(得分:2)
这种表示法称为泛型,它与ES6甚至JavaScript无关。相反,它是TypeScript Generics notation。