在Vue模板中使用读取文件

时间:2019-09-19 12:20:14

标签: node.js vue.js fs

我需要使用vue.js从系统中读取文件
像这样:

import fs from "fs"; 
var fs = require("fs"); 

fs.readFile("path");

我在导入fs时出错。我在做什么错了?

1 个答案:

答案 0 :(得分:0)

为此,我正在使用Axios

axios.get('/' + 'settings.json').then(response => {
     console.log(response.data);
     //do anything you want with response.data (content of the file)
})

您的文件必须位于public文件夹中