POST 接口,将参数拼接到 URL 上,而不是将其作为表单数据发送

POST 接口,将参数拼接到 URL 上,而不是将其作为表单数据发送,代码如下:


export function importCinemaCode(parameter) {
  return axios({
    url: `${api.importCinemaCode}?cinemaCode=${parameter.cinemaCode}`,
    method: 'post',
    // 如果需要发送其他数据,可以使用 data 属性
    data: {} // 添加需要发送的其他数据
  })
}

使用,ES6的模板字符串,将参数拼接到 URL 上,这样,parameter.cinemaCode 的值将作为查询参数附加到 URL 上,而不是作为表单数据发送。

你可能感兴趣的:(axios,ajax)