這個函數呢是本身在寫基於Vue+ElementUI管理後臺時用到的,,下面列出來兩種使用方式:javascript
js
函數/** * 對象轉url參數 * @param {*} data * @param {*} isPrefix */ queryParams (data, isPrefix) { isPrefix = isPrefix ? isPrefix : false let prefix = isPrefix ? '?' : '' let _result = [] for (let key in data) { let value = data[key] // 去掉爲空的參數 if (['', undefined, null].includes(value)) { continue } if (value.constructor === Array) { value.forEach(_value => { _result.push(encodeURIComponent(key) + '[]=' + encodeURIComponent(_value)) }) } else { _result.push(encodeURIComponent(key) + '=' + encodeURIComponent(value)) } } return _result.length ? prefix + _result.join('&') : '' }
寫了一個工具文件utils.js
,將其做爲工具包引入Vue的main.js
,並將其附給Vue
原型,這樣在每一個組件中就可使用this.$utils
來使用裏面的一些工具函數了
utils.js
文件const utils = { /** * 對象轉url參數 * @param {*} data * @param {*} isPrefix */ queryParams (data, isPrefix = false) { let prefix = isPrefix ? '?' : '' let _result = [] for (let key in data) { let value = data[key] // 去掉爲空的參數 if (['', undefined, null].includes(value)) { continue } if (value.constructor === Array) { value.forEach(_value => { _result.push(encodeURIComponent(key) + '[]=' + encodeURIComponent(_value)) }) } else { _result.push(encodeURIComponent(key) + '=' + encodeURIComponent(value)) } } return _result.length ? prefix + _result.join('&') : '' }, // ....其餘函數.... } export default utils
main.js
文件import Vue from 'vue' import App from './App.vue' import utils from '@/utils/utils' // ...其餘代碼... Vue.prototype.$utils = utils // ...其餘代碼...
// ....其餘代碼 this.$utils.queryParams(this.params) // ...其餘代碼...
若是有寫的不對或者不合適的地方請多多賜教,畢竟我仍是個前端小菜雞,happy coding!