如何使用 javascript 或 Jquery 使用文件系统或操作?

How to use file system or operation using javascript or Jquery?(如何使用 javascript 或 Jquery 使用文件系统或操作?)
本文介绍了如何使用 javascript 或 Jquery 使用文件系统或操作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用 Javascript 或 jQuery 对跨浏览器进行一些文件操作,例如:

File create
File write
File read
Update
Remove/delete

上面的东西可以做吗?如果可能的话,我可以从哪里得到这个想法?请给我建议.无论如何(客户端/服务器)怎么做?我问这个只是为了知道!

Is it possible to do above stuffs? If possible, from where I can get the idea? Please suggest me.In any end (client/server) how can it be done?i asked this just for know!

推荐答案

不,你不能在浏览器上做这种类型的操作.

No you can't do such type of operation on browser.

您需要服务器端 JavaScript Node.js.

You need Server Side JavaScript Node.js.

文件系统中有很多细节

There are lot of details in Filesystem

编写文件示例

var fs = require('fs');
fs.writeFile("yourpath", "Hello", function(err) {
    if(err) {
        console.log(err);
    } else {
        console.log("The file was saved!");
    }
}); 

这篇关于如何使用 javascript 或 Jquery 使用文件系统或操作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)