当前位置:   article > 正文

用Vuex存储可配置下载的ip地址(用XML进行ajax请求配置文件)

用Vuex存储可配置下载的ip地址(用XML进行ajax请求配置文件)

1.在public文件夹下创建一个名为Configuration的文件在创建一个Configuration.txt里面就放IP地址(这里的名字可以随便命名一定性的被人解读文件含义)
例如:

http://172.171.208.1:8003
  • 1

2.在store文件夹中创建一个名为 ajaxModule.js 的 Vuex 模块:


const state = {
    changeIp: ''//参数
};
const mutations = {
    setChangeIp(state, ip) {
        state.changeIp = ip;
    }
};
const getters = {
    changeIp: state => state.changeIp,
};
const actions = {
    fetchChangeIp({ commit }) {
        var xhttp = new XMLHttpRequest();
        xhttp.onreadystatechange = function () {
            if (this.readyState == 4 && this.status == 200) {
                var Changeid = this.responseText; 
                commit('setChangeIp', Changeid);
            }
        };
        xhttp.open("GET", "../../Configuration/Configuration.txt", true);
        xhttp.send();
    }
};
export default {
    namespaced: true,/// 添加这一行启用命名空间
    state,
    mutations,
    actions,
    getters
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

3.在您的store中index.js引入ajaxModule模块

import Vue from 'vue'
import Vuex from 'vuex'
import ajaxModule from './ajaxModule';

Vue.use(Vuex)

export default new Vuex.Store({
  state: {
  },
  getters: {
  },
  mutations: {
  },
  actions: {
  },
  modules: {
    ajax:ajaxModule//引入模块
  }
})

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

4.在全局页面中调用该 Vuex 模块:

<template>
  <div>
    <p>Change IP: {{ changeIp }}</p>
  </div>
</template>

<script>
import { mapActions, mapGetters } from "vuex"; //引入vuex模块

export default {
  computed: {
    // 添加命名空间 'ajax' 到 mapGetters
    ...mapGetters("ajax", ["changeIp"]),
  },
  methods: {
    // 同样,添加命名空间 'ajax' 到 mapActions
    ...mapActions("ajax", ["fetchChangeIp"]),

    frontDownload() {
      var a = document.createElement("a"); // 创建一个<a></a>标签
      var peizhiurl = this.changeIp; //获取到配置文件的ip地址
      a.href = peizhiurl + "/ViebPlugin.exe"; //拼接起来就可以了http://172.17.208.1:8003/ViebPlugin.exe
      a.download = "VideoWebPlugin.exe"; //
      a.style.display = "none"; // 障眼法藏起来a标签
      document.body.appendChild(a); // 将a标签追加到文档对象中
      a.click(); // 模拟点击了a标签,会触发a标签的href的读取,浏览器就会自动下载了
      a.remove(); // 一次性的,用完就删除a标签
    },
  },
};
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/650559
推荐阅读
相关标签
  

闽ICP备14008679号