Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BingFormParameter ¶
* form 表单请求参数,用ShouldBind方法bind到struct对象
func FormPostParameter ¶
* 获取form表单提交的参数 用PostMan 测试的时候不能参数不能放在 params 中,应该放在body中作为参数传过来 否则无法接受到参数
// todo PostForm 这种参数swagger无法传参数
@Description 获取form表单提交的参数 @Param name query string true "名称" @Param password query string true "密码" @Success 200 {string} json "{"code":200,"data":{},"msg":"ok"}" @Router /test/form_post [post]
func GenQrCode ¶
* 生成二维 浏览器访问 http://localhost:8088/test/genQrCode?value=234
func GetUserById ¶
* 测试获取restFul 参数 http://localhost:8080/test/getuser/1345
@Summary test @Param id path int true "id" @Success 200 {string} json "{"code":200,"data":{},"msg":"ok"}" @Router /test/getuser/{id} [get]
func QueryStrParameter ¶
* 获取?后面的参数 http://localhost:8080/test/queryStrParameter?firstname=123&lastname=ggg DefaultQuery 方法如果获取不到参数则返回默认值,如下地址则 firstName 的值将为 akka http://localhost:8080/test/queryStrParameter?lastname=ggg