在我的js文件中,我引用了HTML文件,比如window.location。我希望grunt cache bust更新该引用并添加哈希数据,因此加载的页面是正确的,即使用正确版本化文件的页面。例如:
window.location ='myweb.html'; > window.location ='myweb.html?575a2aa1158af941?575a2aa9658af941';
我找不到任何允许我在js文件中写入的缓存区域配置。在我的Gruntfile.js中,我添加了必须写入的资产和scr文件,但没有成功。
答案 0 :(得分:4)
我无法找到允许我在js文件中写入的缓存区域的任何配置
......我也无法做到这一点。
最后,我选择了一个自定义的grunt解决方案来实现这一目标。这需要:
$ npm install randomstring --save-dev
options.hash
任务中设置生成为cacheBust
值的随机字符串。.js
文件中搜索 ' .html' 并替换找到的所有实例新生成的随机字符串加上' .html' 。例如。的 ' .a5G5p7QdOE6DF1St4k 强>的.html' $ npm install grunt-text-replace --save-dev
module.exports = function(grunt) {
var randomstring = require("randomstring");
grunt.initConfig({
randomString: randomstring.generate(),
cacheBust: {
myTarget: {
options: {
// <-- Your options here
hash: '<%= randomString %>' //<-- This template references the random generated string.
},
src: [/* Your settings here */]
}
},
replace: {
js: {
src: './src/**/*.js',
dest: './dist/', //<-- creates a copy
replacements: [{
from: /\.html'/, // matches all instances of .html'
to: '.<%= randomString %>.html\'' //<-- Note the dot separator at the start.
}]
}
}
});
require('load-grunt-tasks')(grunt);
grunt.registerTask('myCacheBust', ['cacheBust:myTarget', 'replace:js']);
grunt.registerTask('default', ['myCacheBust']);
};
备注:强>
$ npm install load-grunt-tasks --save-dev
replace:js
任务中使用的正则表达式搜索.html'
文件中所有字符.js
的实例。randomstring.generate(7)
答案 1 :(得分:1)
我参与了一个项目,该项目使用Grunt缓存清理来破坏JS文件中的文件名。配置看起来像这样
cacheBust : {
revProd: {
options: {
assets: ['**/*.js', '!assets/js/config.constant.js','**/*.css','!assets/css/themes/*.css'],
baseDir: 'standardversion',
deleteOriginals: true,
jsonOutput: true, // Output the original => new URLs to a JSON file
jsonOutputFilename: 'grunt-cache-bust.json'
},
src: ['standardversion/index.html', 'standardversion/assets/js/config.contants.js']
}
我的config.contants.js
文件包含
'propertiesCtrl': 'assets/views/properties/controllers/properties.controller.js',
'propertyDetailsCtrl': 'assets/views/properties/controllers/propertyDetails.controller.js',
'propertyAddCtrl': 'assets/views/properties/controllers/addProperty.controller.js',
您可以通过将**/*.html
添加到assets
选项
答案 2 :(得分:0)
我也遇到过类似的情况,我改编了RobC的上面的代码来解决。
为了避免在部署时出现缓存问题,我在html参考之后添加了一个哈希。这样,您可以强制浏览器在部署后加载文件,但是此后,就可以毫无问题地缓存文件。
这是我的代码。
module.exports = function(grunt) {
var randomstring = require("randomstring");
grunt.initConfig({
randomString: randomstring.generate(),
replace: {
js: {
src: './src/**/*.js',
dest: './dist/', //<-- creates a copy
replacements: [{
from: '.js', // use string or regex to find the files you want
to: function (matchedWord) {
return matchedWord + '?<%= randomString %>';
}
}]
}
}
});
require('load-grunt-tasks')(grunt);
grunt.registerTask('default', ['replace:js']);
};