美文网首页IT技术.使用技巧大数据
如何直接在url地址栏中,传数组参数

如何直接在url地址栏中,传数组参数

作者: 瑾兰 | 来源:发表于2018-01-24 15:43 被阅读194次

    情景:写完后台接口,想直接通过URL地址栏验证接口的正确性。(ssm框架)
    Controller:接口

    @Controller
    @RequestMapping("/NavimenuitemController")
    public class NavimenuitemController {
        @Autowired
        private NavimenuitemService service;
        /**
         * a.查所有并分页
         * @param record
         * @return
         */
        @ResponseBody
        @RequestMapping("/selectAll")
        public ReturnObject selectAll(Integer[] nmiids
    ,Navimenuitem record){
     return service.selectAll(nmiids,record);
        }}
    

    通过地址栏输入:
    正确的方式:

    http://localhost:8080/e3izm/NavimenuitemController/
    selectAll?nmiids=1,2&pageno=1&pagesize=8
    

    错误的方式:

    http://localhost:8080/e3izm/NavimenuitemController/
    selectAll?nmiids[]=1&nmiids[]=2&pageno=1&pagesize=8
    

    相关文章

      网友评论

        本文标题:如何直接在url地址栏中,传数组参数

        本文链接:https://www.haomeiwen.com/subject/lluuaxtx.html