当前位置:   article > 正文

vue传数组参数给java后端_vue传给后端list的参数

vue传给后端list的参数

前景:在开发过程中使用elementUI组件el-date-picker,将数组 [ 1672638936397, 1673243736397 ] 传给后端

一、UI插件

设置空间类型:type="datetimerange"

设置数据格式为时间戳:value-format="timestamp"

  1. <el-date-picker
  2. v-model="query.createDate"
  3. :default-time="['00:00:00','23:59:59']"
  4. type="datetimerange"
  5. range-separator=":"
  6. size="small"
  7. class="date-item"
  8. value-format="timestamp"
  9. start-placeholder="开始时间"
  10. end-placeholder="结束时间"
  11. />

二、JS / VUE 数据传输

axios数组序列化请求参数:paramsSerializer

  1. export function userListApi(query) {
  2. return request({
  3. url: '/system/user/list',
  4. method: 'get',
  5. params: query,
  6. paramsSerializer: params => {
  7. return qs.stringify(params, { indices: false })
  8. }
  9. })
  10. }

三、后端实体类接收请求参数

private List<Long> createDate;

四、MyBatis / MySQL处理查询格式

注意el-date-picker控件的时间戳格式是13位的

  1. <if test="createDate !=null and createDate.size==2 ">
  2. AND (p.create_date BETWEEN FLOOR(#{createDate[0], jdbcType=ARRAY}/1000) AND FLOOR(#{createDate[1], jdbcType=ARRAY}/1000 ))
  3. </if>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/280051
推荐阅读
相关标签
  

闽ICP备14008679号