我想在 android 中为 Phonegap 和 sencha 使用评级栏。对于我通过以下链接提到的:
所以我将Ext.ux.touch.Rating.js和Ext.ux.touch.Rating.css保存在assets的www文件夹中。在app.js我添加了以下行:
requires : ['Ext.ux.touch.Rating'],
在 js 文件中,我添加了以下代码:
xtype : 'rating',
label : 'Star Rating',
itemsCount : 5,
itemCls : 'x-rating-star',
itemHoverCls : 'x-rating-star-hover',
clearIcon : true
但它在控制台下面给了我错误:
Failed to load resource: the server responded with a status of 404 (Not Found)
我没有得到我必须保存这些文件并使用它们的地方。