ExtJS中的评级表

时间:2016-04-18 21:56:45

标签: javascript extjs require extjs6

我正在尝试从Sencha's online examples复制示例评级表单。我不明白为什么我会收到这个错误:

[ERR] BUILD FAILED
[ERR] com.sencha.exceptions.ExBuild: Failed to find any files for C:\users\Diederiksj\Desktop\FreshApp\classic\src\view\form\RatingForm.js::ClassRequire::Ext.ux.rating.Picker
[ERR]   at com.sencha.command.BasePluginCommands$BasePluginCommand.doExecute(BasePluginCommands.
[ERR] java:99)
[ERR]
[ERR] Total time: 3 seconds
[ERR] The following error occurred while executing this line:
C:\users\Diederiksj\Desktop\FreshApp\.sencha\app\build-impl.xml:247: The following error occurred while executing this line:
C:\users\Diederiksj\Desktop\FreshApp\.sencha\app\watch-impl.xml:61: The following error occurred while executing this line:
C:\users\Diederiksj\Desktop\FreshApp\.sencha\app\build-impl.xml:380: The following error occurred while executing this line:
C:\users\Diederiksj\Desktop\FreshApp\.sencha\app\init-impl.xml:382: com.sencha.exceptions.ExBuild: Failed to find any files for C:\users\Diederiksj\Desktop\FreshApp\classic\src\view\form\RatingForm.js::ClassRequire::Ext.ux.rating.Picker

当我查看AppRootDirectory/ext/packages/ux/classic/src/rating时,Picker.js文件就在那里,由ExtJS在生成应用程序时自动创建。以下是我尝试要求Picker类的类的摘录:

Ext.define('FreshApp.view.form.RatingForm', {
    extend: 'Ext.panel.Panel',
    xtype: 'form-rating',

    requires: [
        'Ext.ux.rating.Picker'
    ],

    title: 'Rating Form',
    viewModel: true,

    bodyPadding: 10,
    width: 520,
    height: 500,
    minHeight: 400,
    resizable: true,
    frame: true,
    layout: {
        type: 'vbox',
        align: 'stretch'
    },
    defaultType: 'textfield',

任何帮助将不胜感激。感谢。

1 个答案:

答案 0 :(得分:4)

您需要指定您的应用需要ux包。您可以通过在app.json中添加以下代码段来实现此目的。

"requires": [
    "ux"
],