मैं इसी तरह के मुद्दे के साथ था। Html ब्राउज़र द्वारा कैश किया जा रहा है या मध्य cdn / proxies (F5 आपकी मदद नहीं करेगा) द्वारा अधिक मुश्किल है।
मैंने एक ऐसे समाधान की तलाश की जो 100% सत्यापित करता है कि क्लाइंट के पास नवीनतम index.html संस्करण है, सौभाग्य से मुझे हेनरिक पेनेटरी द्वारा यह समाधान मिला है:
https://blog.nodeswat.com/automagic-reload-for-clients-after-deploy-with-angular-4-8440c9fdd96c
समाधान उस मामले को भी हल करता है जहां ग्राहक दिनों के लिए ब्राउज़र के साथ खुला रहता है, ग्राहक अंतराल पर अपडेट की जांच करता है और अगर नया संस्करण डिप्लॉयड फिर से लोड करता है।
समाधान थोड़ा मुश्किल है लेकिन एक आकर्षण की तरह काम करता है:
- इस तथ्य का उपयोग करें कि
ng cli -- prod
उनमें से एक के साथ हैशेड फ़ाइलों का उत्पादन होता है जिन्हें मुख्य कहा जाता है। [हैश] .js
- एक संस्करण.जसन फ़ाइल बनाएँ जिसमें वह हैश हो
- एक कोणीय सेवा बनाएँ वर्जनचेक सर्विस जो कि वर्जन.जॉन को चेक करती है और जरूरत पड़ने पर पुनः लोड करती है।
- ध्यान दें कि तैनाती के बाद चलने वाली एक js स्क्रिप्ट आपके लिए दोनों version.json और कोणीय सेवा में हैश की जगह लेती है, इसलिए किसी मैनुअल काम की आवश्यकता नहीं है, लेकिन पोस्ट-बिल्ड.js को चलाना
चूँकि हेनरिक पीनर का समाधान कोणीय 4 के लिए था, इसलिए इसमें कुछ छोटे बदलाव हुए, मैं यहाँ निश्चित स्क्रिप्ट भी रखता हूँ:
वर्जनचेक सर्विस:
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Injectable()
export class VersionCheckService {
// this will be replaced by actual hash post-build.js
private currentHash = '{{POST_BUILD_ENTERS_HASH_HERE}}';
constructor(private http: HttpClient) {}
/**
* Checks in every set frequency the version of frontend application
* @param url
* @param {number} frequency - in milliseconds, defaults to 30 minutes
*/
public initVersionCheck(url, frequency = 1000 * 60 * 30) {
//check for first time
this.checkVersion(url);
setInterval(() => {
this.checkVersion(url);
}, frequency);
}
/**
* Will do the call and check if the hash has changed or not
* @param url
*/
private checkVersion(url) {
// timestamp these requests to invalidate caches
this.http.get(url + '?t=' + new Date().getTime())
.subscribe(
(response: any) => {
const hash = response.hash;
const hashChanged = this.hasHashChanged(this.currentHash, hash);
// If new version, do something
if (hashChanged) {
// ENTER YOUR CODE TO DO SOMETHING UPON VERSION CHANGE
// for an example: location.reload();
// or to ensure cdn miss: window.location.replace(window.location.href + '?rand=' + Math.random());
}
// store the new hash so we wouldn't trigger versionChange again
// only necessary in case you did not force refresh
this.currentHash = hash;
},
(err) => {
console.error(err, 'Could not get version');
}
);
}
/**
* Checks if hash has changed.
* This file has the JS hash, if it is a different one than in the version.json
* we are dealing with version change
* @param currentHash
* @param newHash
* @returns {boolean}
*/
private hasHashChanged(currentHash, newHash) {
if (!currentHash || currentHash === '{{POST_BUILD_ENTERS_HASH_HERE}}') {
return false;
}
return currentHash !== newHash;
}
}
मुख्य AppComponent में परिवर्तन:
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
constructor(private versionCheckService: VersionCheckService) {
}
ngOnInit() {
console.log('AppComponent.ngOnInit() environment.versionCheckUrl=' + environment.versionCheckUrl);
if (environment.versionCheckUrl) {
this.versionCheckService.initVersionCheck(environment.versionCheckUrl);
}
}
}
पोस्ट-बिल्ड स्क्रिप्ट जो जादू बनाती है, पोस्ट-बिल्ड.js:
const path = require('path');
const fs = require('fs');
const util = require('util');
// get application version from package.json
const appVersion = require('../package.json').version;
// promisify core API's
const readDir = util.promisify(fs.readdir);
const writeFile = util.promisify(fs.writeFile);
const readFile = util.promisify(fs.readFile);
console.log('\nRunning post-build tasks');
// our version.json will be in the dist folder
const versionFilePath = path.join(__dirname + '/../dist/version.json');
let mainHash = '';
let mainBundleFile = '';
// RegExp to find main.bundle.js, even if it doesn't include a hash in it's name (dev build)
let mainBundleRegexp = /^main.?([a-z0-9]*)?.js$/;
// read the dist folder files and find the one we're looking for
readDir(path.join(__dirname, '../dist/'))
.then(files => {
mainBundleFile = files.find(f => mainBundleRegexp.test(f));
if (mainBundleFile) {
let matchHash = mainBundleFile.match(mainBundleRegexp);
// if it has a hash in it's name, mark it down
if (matchHash.length > 1 && !!matchHash[1]) {
mainHash = matchHash[1];
}
}
console.log(`Writing version and hash to ${versionFilePath}`);
// write current version and hash into the version.json file
const src = `{"version": "${appVersion}", "hash": "${mainHash}"}`;
return writeFile(versionFilePath, src);
}).then(() => {
// main bundle file not found, dev build?
if (!mainBundleFile) {
return;
}
console.log(`Replacing hash in the ${mainBundleFile}`);
// replace hash placeholder in our main.js file so the code knows it's current hash
const mainFilepath = path.join(__dirname, '../dist/', mainBundleFile);
return readFile(mainFilepath, 'utf8')
.then(mainFileData => {
const replacedFile = mainFileData.replace('{{POST_BUILD_ENTERS_HASH_HERE}}', mainHash);
return writeFile(mainFilepath, replacedFile);
});
}).catch(err => {
console.log('Error with post build:', err);
});
बस (नया) बिल्ड फ़ोल्डर में स्क्रिप्ट node ./build/post-build.js
रखें डिस्ट फ़ोल्डर का उपयोग करके बिल्डिंग का उपयोग करने के बाद स्क्रिप्ट चलाएंng build --prod