extjs 关于ExtReact7.2.0许可证

zysjyyx4  于 2022-11-05  发布在  React
关注(0)|答案(1)|浏览(141)

我想为我的企业应用程序使用ExtReact组件。它是免费使用的吗?如果是,如何为项目设置它。PS:https://github.com/sencha/ext-react这段代码是开放的,但我找不到如何把它为我的项目工作。

  • 谢谢-谢谢
dojqjjoe

dojqjjoe1#

不,不是免费的。你可以试着免费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,那么就使用ExtJS计划。唯一的区别是Extjs基于JSON工作,Extreact基于HTML属性(配置)工作。

相关问题