接口中获取参数

接口中获取参数

作者:


func (c *transparentController) GetBudgetSourceBillSet() interface{} {
  // 请求body中json数据
  orgId := c.Ctx.Params().Get("orgId")
  // url?objectType=1
  objectType := c.Ctx.URLParam("objectType")
	return Fetch(c, context.TFetchOption{
		Method: "get",
		Url:    urls.GetSourceBillSet + "/" + orgId,
	})
}