admin管理员组文章数量:1344629
I would like to extract an array object at run-time. For example:
var myarr = [1,2,3,4,5];
How can I save myarr
at location /home/username/myarr.txt
in Chrome DevTools?
I would like to extract an array object at run-time. For example:
var myarr = [1,2,3,4,5];
How can I save myarr
at location /home/username/myarr.txt
in Chrome DevTools?
- Chrome doesn't allow writing to an arbitrary path in the real file system. Chrome extensions may use chrome.downloads API to save the files to paths inside the downloads directory and that's about all. – woxxom Commented Mar 26, 2017 at 9:18
1 Answer
Reset to default 15You can't download to a specific location, however you can download this file to your Chrome downloads path (where all your files are download in to). Try this (it is working for me):
var arr = [ 1, 2, 3 ];
var a = document.createElement('a');
var file = new Blob([ arr.toString() ], { type: 'text/plain' });
a.href = URL.createObjectURL(file);
a.download = 'bla';
a.click();
It should download a file named 'bla' containing the array values.
本文标签: javascriptHow can I save an array object to file at runtime by chrome debug toolsStack Overflow
版权声明:本文标题:javascript - How can I save an array object to file at run-time by chrome debug tools? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743745987a2531765.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论