测..._前端定义全局变量,在服务器上修改">
赞
踩
新建一个js文件、如图 js文件名字叫ApiServer
- let apiUrl='www.huashengshu.top:3000'
-
- export default {
- apiUrl:apiUrl
- }
使用方法:
在需要使用的地方引入该js文件
- <template>
- <div>
- <button @click="this.test">测试引入</button>
- </div>
- </template>
-
- <script>
- import Api from './SpiServer' //import js别名 from 引入的js文件
- // 下面的都可以使用,使用方法是通过Api.apiUrl引用
-
- export default {
- name: 'Music',
- methods: {
- test(){
- console.log(API.apiUrl)
- alert(API.apiUrl)
- },
- }
- }
- </script>
会在控制台输出以及会弹窗得到 www.huashengshu.top:3000 字符串
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。