admin管理员组文章数量:1344238
How do I edit a file in pure js (without node)? I get a file with an input field and I read its text like this:
var fileReader = new FileReader();
fileReader.readAsText(file);
fileReader.onload = function () {
alert(this.result);
}
So, pretty straight forward. I tried to look on the net how to use a fileWriter but with no success. I just need to edit the text inside that file and save it, how can I do?
How do I edit a file in pure js (without node)? I get a file with an input field and I read its text like this:
var fileReader = new FileReader();
fileReader.readAsText(file);
fileReader.onload = function () {
alert(this.result);
}
So, pretty straight forward. I tried to look on the net how to use a fileWriter but with no success. I just need to edit the text inside that file and save it, how can I do?
Share asked Jan 26, 2018 at 20:43 JohnsonJohnson 3062 gold badges5 silver badges18 bronze badges2 Answers
Reset to default 6You can read in the data in the text file, modify it in client side JavaScript (no Node), and then output and re-save it. It does require user interaction, though.
This is a JS fiddle I modified that outputs the file from some text, although it does no reading of files.
Originally taken from this Stackoverflow question
(function () {
var textFile = null;
function makeTextFile(text) {
var data = new Blob([text], {type: 'text/plain'});
// If we are replacing a previously generated file we need to
// manually revoke the object URL to avoid memory leaks.
if (textFile !== null) {
window.URL.revokeObjectURL(textFile);
}
textFile = window.URL.createObjectURL(data);
return textFile;
}
var create = document.getElementById('create');
var textbox = document.getElementById('textbox');
//create a click event listener
create.addEventListener('click', function () {
var link = document.getElementById('downloadlink');
link.setAttribute('download', 'info.txt');
//make the text file
link.href = makeTextFile(textbox.value);
link.style.display = 'block';
//wait for the link to be rendered and then initiate a click to download the file
window.requestAnimationFrame(function () {
var event = new MouseEvent('click');
link.dispatchEvent(event);
document.body.removeChild(link);
});
}, false);
})();
You can't write files in a browser, you'll have to use node.
本文标签: javascriptEdit filepure jsStack Overflow
版权声明:本文标题:javascript - Edit file - pure js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743693199a2523055.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论