gpt4 book ai didi

javascript - ExtJS:使用图表构建应用程序测试失败

转载 作者:行者123 更新时间:2023-11-28 08:13:30 26 4
gpt4 key购买 nike

我在构建带有图表的测试应用程序时遇到了问题。我已经使用 sencha cmd 构建了一个应用程序并开发了我的应用程序。现在我尝试使用 sencha cmd 构建一个测试应用程序,但现在出现错误

未捕获错误:[Ext.createByAlias] 无法创建无法识别的别名实例:series.bar

的商店:

Ext.define('test.store.statisticKey', {
extend: 'Ext.data.Store',
model: 'test.model.statisticKey',
autoLoad: true,
autoSync: true,
id: 'storestatisticKey',
proxy: {
type: 'ajax',
url: '../getStatisticKey.php',
reader: {
type: 'json',
root: 'data'
}
}
});

我的图表的代码:

Ext.define('test.view.Chart1', {
extend: 'Ext.chart.Chart',
alias: 'widget.Chart1',
width: 350,
height: 300,
animate: true,
id: 'statisticKeyID',
store: 'statisticKey',
border: 0,
axes: [{
type: 'Numeric',
position: 'bottom',
fields: ['count'],
label: {
renderer: Ext.util.Format.numberRenderer('0,0')
},
grid: true,
minimum: 0
}, {
type: 'Category',
position: 'left',
fields: ['key']
}],
series: [{
type: 'bar',
axis: 'bottom',
highlight: true,
tips: {
trackMouse: true,
width: 140,
height: 28,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get('key') + ': ' + storeItem.get('count') + ' Patienten');
}
},
label: {
display: 'insideEnd',
field: 'count',
renderer: Ext.util.Format.numberRenderer('0'),
orientation: 'horizontal',
color: '#333',
'text-anchor': 'middle'
},
xField: 'key',
yField: ['count']
}]
});

在我的开发系统中一切都很好,但是当我构建测试系统时,我收到错误并且没有显示图表。

感谢您的帮助

最佳答案

查看开发时控制台中是否收到“同步”警告,如果是,请修复它们。

如果仍然遇到问题,请尝试

sencha ant clean

构建之前。

关于javascript - ExtJS:使用图表构建应用程序测试失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23884487/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com