vue.js---加载JSON文件的两种方式
Posted CestLavie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.js---加载JSON文件的两种方式相关的知识,希望对你有一定的参考价值。
本周的项目有个需求,需要把打包好的项目,通过直接变更JSON的配置文件,动态的渲染页面。。
这里我尝试了两种方式:
方法一:
通过import直接引入,直接调用data即可获取json文件的内容。
import data from \'static/h5Static.json\'
该方法比较直接,但是打包以后发现变更JSON文件,结果渲染的页面还是与最初打包JSON文件渲染出来的页面一样,并不能达到我想要的结果,因此尝试了方法二。
方法二:
1.在http.js中添加一个请求方法
export const $getJson = function (method) { return new Promise((resolve, reject) => { axios({ method: \'get\', url: method, dataType: "json", crossDomain: true, cache: false }).then(res => { resolve(res) }).catch(error => { reject(error) }) })
2.接口的封装文件中引入$getJson请求方式
import{$get,$post,$getJson}from \'../http\'; //获取JSON数据 const getH5StaticJson = data => { return $getJson(\'static/h5Static.json\',data) }
3.在组建中使用
this.$api.user.getH5StaticJson({}).then(res => { consloe.log(res) });
以上是关于vue.js---加载JSON文件的两种方式的主要内容,如果未能解决你的问题,请参考以下文章