在 ionic 中使用 gulp-angular-templatecache
Using gulp-angular-templatecache in ionic
我遵循了这个教程:
https://www.npmjs.com/package/gulp-angular-templatecache
我不知道把它放在我项目的什么地方。
在这一点上..
angular.module("templates").run([$templateCache,
function($templateCache) {
$templateCache.put("template1.html",
// template1.html content (escaped)
);
$templateCache.put("template2.html",
// template2.html content (escaped)
);
// etc.
}
]);
作为语法,我不确定应该去哪一部分,我正在尝试明智地遵循本教程
这是我的文件app.js
angular.module('myapp', ['ionic', 'myapp.controllers', 'myapp.services'])
.run(function($ionicPlatform) {
.
.
我有一个问题,这样做我的所有模板都被修改了吗?因为这就是我需要的。谢谢。
这 post 就是您要找的东西,我为我的一个项目做了它。
我遵循了这个教程: https://www.npmjs.com/package/gulp-angular-templatecache
我不知道把它放在我项目的什么地方。 在这一点上..
angular.module("templates").run([$templateCache,
function($templateCache) {
$templateCache.put("template1.html",
// template1.html content (escaped)
);
$templateCache.put("template2.html",
// template2.html content (escaped)
);
// etc.
}
]);
作为语法,我不确定应该去哪一部分,我正在尝试明智地遵循本教程
这是我的文件app.js
angular.module('myapp', ['ionic', 'myapp.controllers', 'myapp.services'])
.run(function($ionicPlatform) {
.
.
我有一个问题,这样做我的所有模板都被修改了吗?因为这就是我需要的。谢谢。
这 post 就是您要找的东西,我为我的一个项目做了它。