我正在玩弄使用 Meteor 作为后端来创建静态 html 生成器(带有管理 UI)的想法。
我希望,当触发时,将在公用文件夹上创建一个新文件,并立即由作者在嵌入 html 的 iframe 上进行审查。
该文件已创建,但会发生两个副作用:
- 服务器重新启动。
- 该文件已缓存 - 因此用户无法看到更改发生。
有任何想法吗?
if (Meteor.is_client) {
Template.hello.events = {
'click input' : function () {
Meteor.call('makeFile', 'filename.html', function(error, result){
alert(result);
});
//window.location = '/filename.txt';
// template data, if any, is available in 'this'
if (typeof console !== 'undefined')
console.log("You pressed the button");
}
};
}
if (Meteor.is_server) {
var fs = __meteor_bootstrap__.require('fs');
Meteor.startup(function () {
// code to run on server at startup
});
Meteor.methods({
'makeFile': function(fileName) {
/*
fs.unlink("public/"+fileName, function (err) {
if (err) throw err;
console.log('successfully deleted ');
});
*/
fs.writeFile("public/"+fileName, "<html><body><h1>test</h1></body></html>", function(err) {
if(err) {
console.log(err);
} else {
console.log("The file was saved! "+ fileName);
}
});
return fileName;
}
});
}