Sencha 应用构建和图表 CSS
Sencha app build and chart CSS
大家好,我一直在使用 sencha cmd 创建一个应用 "sencha generate app ..."。然后我想使用图表,所以我修改了 app.json 文件并添加了这个:
/**
* The list of required packages (with optional versions; default is "latest").
*
* For example,
*
* "requires": [
* "sencha-charts"
* ]
*/
"requires": [
'sencha-charts'
]
所以我可以很好地显示图表,只是我也没有加载 css。我可以添加一个 <link rel="stylesheet"...>
指向图表的 css 文件(在我的例子中是 ext-charts-all.css)。但我觉得这个解决方案不正确。关于如何使用带有图表的 sencha cmd 和 css 构建 sencha 应用程序的任何猜测?
非常感谢!
双引号是这里的方式,JSON 当您使用 requires
时的字符串格式
您将需要重建应用程序 - sencha 应用刷新(或构建),
这应该会引入你的依赖 css 文件,如果你想添加额外的 css 资源,你可以在 app.json 文件
中添加它们
/**
* List of all CSS assets in the right inclusion order.
* Each item is an object with the following format:
* {
* "path": "path/to/item.css" // Path to file, if local file it must be relative to this app.json file
* "remote": true // (Optional)
* // - Defaults to undefined (falsey) to signal a local file which will be copied
* // - Specify true if this file is a remote file which will not to be copied
* "update": "delta" // (Optional)
* // - If not specified, this file will only be loaded once, and
* // cached inside localStorage until this value is changed to either one below
* // - "delta" to enable over-the-air delta update for this file
* // - "full" means full update will be made when this file changes
*
* }
*/
大家好,我一直在使用 sencha cmd 创建一个应用 "sencha generate app ..."。然后我想使用图表,所以我修改了 app.json 文件并添加了这个:
/**
* The list of required packages (with optional versions; default is "latest").
*
* For example,
*
* "requires": [
* "sencha-charts"
* ]
*/
"requires": [
'sencha-charts'
]
所以我可以很好地显示图表,只是我也没有加载 css。我可以添加一个 <link rel="stylesheet"...>
指向图表的 css 文件(在我的例子中是 ext-charts-all.css)。但我觉得这个解决方案不正确。关于如何使用带有图表的 sencha cmd 和 css 构建 sencha 应用程序的任何猜测?
非常感谢!
双引号是这里的方式,JSON 当您使用 requires
时的字符串格式您将需要重建应用程序 - sencha 应用刷新(或构建),
这应该会引入你的依赖 css 文件,如果你想添加额外的 css 资源,你可以在 app.json 文件
中添加它们 /**
* List of all CSS assets in the right inclusion order.
* Each item is an object with the following format:
* {
* "path": "path/to/item.css" // Path to file, if local file it must be relative to this app.json file
* "remote": true // (Optional)
* // - Defaults to undefined (falsey) to signal a local file which will be copied
* // - Specify true if this file is a remote file which will not to be copied
* "update": "delta" // (Optional)
* // - If not specified, this file will only be loaded once, and
* // cached inside localStorage until this value is changed to either one below
* // - "delta" to enable over-the-air delta update for this file
* // - "full" means full update will be made when this file changes
*
* }
*/