vue怎么读取文件内容

本文操作环境:windows7系统、vue/cli 4.3.1&&ultimate 2019.1&&nodev12.16.2版,DELL G3电脑。

观前提示:

本文所使用的IDEA版本为ultimate 2019.1,node版本为v12.16.2,vue版本为@vue/cli 4.3.1。

在项目开发过程中,需要在vue前端读取配置等文件。

1.实例

我的本地文件放在vue项目中的public文件夹中

在这里插入图片描述

test.properties

content=测试内容

vue文件中读取文件内容

// 读取test.properties
readTestFile) {
  const file = this.loadFile'test.properties')
  console.infofile)
  console.logthis.unicodeToUtf8file))},
  // 读取文件
  loadFilename) {
  const xhr = new XMLHttpRequest)
  const okStatus = document.location.protocol === 'file:' ? 0 : 200
  xhr.open'GET', name, false)
  xhr.overrideMimeType'text/html;charset=utf-8')
  // 默认为utf-8
  xhr.sendnull)
  return xhr.status === okStatus ? xhr.responseText : null},
  // unicode转utf-8
  unicodeToUtf8data) {
  data = data.replace/\\/g, '%')
  return unescapedata)}

运行结果如下
在这里插入图片描述

2.可能遇到的问题

2.1.解析的文件乱码

读取文件的方法,以utf-8形式读取文件,建议修改文件格式保存为utf-8编码,或者改变读取格式

xhr.overrideMimeType'text/html;charset=utf-8')
// 默认为utf-8

2.2.读取中文为unicode编码

由于properties存储中文为unicode编码,需要在后台,或者前端处理一下

// unicode转utf-8
unicodeToUtf8data) {
  data = data.replace/\\/g, '%')
  return unescapedata)}

相关推荐:《vue.js教程》

以上就是vue怎么读取文件内容的详细内容,更多请关注风君子博客其它相关文章!

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注