r := gin . Default ( ) r . POST ( "postForm" , postForm ) r . POST ( "postFormArray" , postFormArray ) r . Run ( ) func postFormArray ( c * gin . Context ) { c . JSON ( http . StatusOK , gin . H { "ids" : c . PostFormArray ( "id" ) ,