接口传数组参数

function commonPostType(url, params, callback, status) {
  _.showLoading()
  axios
    .post(_.baseURL + url, params, {
      transformRequest: [
        function(params) {
          params = JSON.stringify(params)
          return params
        }
      ],
      headers: {
        'Content-Type': 'application/json;charset=UTF-8'
      }
    })
    .then(function(result) {
      _.hideLoading()
      if (result.code == '0') {
        if (status) {
          callback(result)
        } else {
          callback(result.data)
        }
      } else {
        _.alert('i18n.notice', filterErrorMessage(result.desc))
      }
    })
}

你可能感兴趣的:(接口传数组参数)