分享一個好用的函數吧,將js中的對象轉成url參數

這個函數呢是本身在寫基於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('&') : ''
  }

在Vue組件化開發時,我是這樣寫的

寫了一個工具文件 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!
相關文章
相關標籤/搜索