我想在我的企业应用程序中使用ExtReact组件。可以免费使用吗?如果是,如何为项目设置它。PS:https://github.com/sencha/ext-react这段代码是开放的,但是我不知道如何在我的项目中使用它。
谢谢。
发布于 2020-10-25 18:30:46
不,不是免费的。你可以免费试用30天,但费用在800美元左右。
ExtReat code for the grid
<Grid title="Users" store={this.store}>
<Column text="Name" dataIndex="name"/>
<Column text="Email" dataIndex="email"/>
</Grid>
Extjs code for the grid
{
xtype: 'grid:
column: [{
text: 'Name',
dataIndex="name"
},
{
text: 'Email',
dataIndex="email"
}
]
} 如果您真的想使用ExtJS,那么就使用plan ExtJs。唯一的区别是Extjs在JSON上工作,而Extreact基于HTML属性(Config)工作。
https://stackoverflow.com/questions/64502028
复制相似问题