赞
踩
基础类型接收,名字对应即可
// method const params = { id: '123456789', name: '张三' } test(params) // api export function test (params) { return axios({ url: url, method: 'GET', params: params }) } // 后台 @GetMapping("/test") public Result test(Long id, String name) { return Res.ok(); }
使用Map接收,需要添加 RequestParam 注解
// method
const params = {
id: '123456789',
name: '张三'
}
test(params)
// api
export function test (params) {
return axios
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。