更新时间:2022-03-16 10:17:45 来源:极悦 浏览1673次
从文件中获取Vue配置值要怎么做呢?
需要从vue文件的html块中获取配置值。这里有一个简单的config.js
const env = process.env.NODE_ENV
const development = {
images: {
server: "http://localhost:4001",
}
}
const production = {
images: {
server: "http://someimageserver.com",
}
}
const config = {
development,
production,
}
module.exports = config[env]
这个简单的vue.js
<template>
<div>
<img :src="`${config.images.server}/images/someimage.jpg`"/>
</div>
</template>
在运行时,上面的
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'images')
该怎么做才能让它工作?
可以使用从脚本块中获取配置值,例如,这非常有效
import config from "../../config"
...
var c = config.images.server
使用VUE3,可以通过添加
import config from "../config"
app.config.globalProperties.$config = config
到main.js文件。从那时起,$config可以在所有文件的模板和脚本中使用。
0基础 0学费 15天面授
Java就业班有基础 直达就业
业余时间 高薪转行
Java在职加薪班工作1~3年,加薪神器
工作3~5年,晋升架构
提交申请后,顾问老师会电话与您沟通安排学习