gpt4 book ai didi

google-chrome - Ionic 2、Chrome 不断从磁盘缓存加载

转载 作者:行者123 更新时间:2023-12-02 14:52:45 25 4
gpt4 key购买 nike

我正在开发一个移动应用程序,并使用以下命令来构建和运行一个在浏览器中运行的版本(拉入所有必要的钩子(Hook),而 ionic 服务则不然)

ionic build browser --desktop --testing && http-server platforms/browser/www/

昨天,以及几周以来,这种方法一直运行良好。我停止并启动同一个命令,它构建/编译了所有内容,一切都很棒。

然后我更新了 Google Chrome。现在,无论我做什么,Chrome 都会不断从磁盘缓存中提取所有这些资源,即使在我删除并重新创建它们之后也是如此。我有什么想法可以解决吗?我不想每次重新加载时都必须清除缓存,而且这似乎会导致其他问题。

我不知道为什么或如何改变,我的 Ionic2 应用程序中没有项目或配置设置不同。

使用 cmd-shift-R 而不是仅使用 cmd-R 重新加载似乎会强制 Chrome 不从磁盘缓存加载,但我很困惑,想了解这里发生了什么......

最佳答案

Chrome 缓存很多,但您可以强制它从服务器加载资源,而不是使用缓存清除将资源从缓存中取出:

加载模板:

var timestamp = (new Date()).getTime();

$ionicPopup.show({
scope: $scope,
title: 'Work!',
templateUrl: '/templates/roll-timer-popup.html?update='+timestamp
});

加载脚本/样式表:

<script src="myscripts.js?update=123..."></script>

<link rel="stylesheet" type="text/css" href="theme.css?update=123...">

对于脚本/样式表,您可以动态地创建它们以及时间戳,然后将它们插入。

或者,当您的脚本文件捆绑在一起时,您可以使用脚本将时间戳写入最终的index.html文件中,以便使用nodejs脚本进行部署,因为我为我的一个项目制作了这个脚本:

const fs = require('fs');

var filename = process.argv[2];

var regExp = /[.|\w]+[.]js/;
var contentToAttach = ['<!-- CONTENT ATTACHED BY '+process.argv[1]+' -->','you can put other content in here that is put into at the end of your file'];

fs.readFile(filename, {
flag : 'r',
encoding: 'utf-8'
},(err, oldFileContent) => {
if (err) throw err;
var fileContent = oldFileContent;
var oldScriptName;
var now = (new Date()).getTime();
var lastIndexPos = 0;
while (oldScriptName = oldFileContent.match(regExp)) {
var newScriptName = oldScriptName + '?update=' + now;
var newIndexPos = fileContent.indexOf(oldScriptName);
if (newIndexPos !== lastIndexPos) {
fileContent = fileContent.replace(oldScriptName, newScriptName);
lastIndexPos = newIndexPos;
}
else {
// same filename found
var fildContentSlice = fileContent.slice(newIndexPos+oldScriptName.length);
fildContentSlice = fildContentSlice.replace(oldScriptName, newScriptName);
fileContent = fileContent.slice(0,newIndexPos+oldScriptName.length)+fildContentSlice;
}
oldFileContent = oldFileContent.replace(oldScriptName, '');
}
var wholeContent = fileContent+'\n\r'+contentToAttach.join('\n\r');
fs.writeFile(filename,wholeContent, (err) => {
if (err) throw err;
console.log('File: '+filename+' is updated!');
});
});

它会在文件中找到的每个脚本标记中插入 ?update=123...。要在 shell 中执行此脚本,请编写:

node updateScript.js path_to_your_html_file

希望有帮助。

关于google-chrome - Ionic 2、Chrome 不断从磁盘缓存加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41270480/

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