我是靠谱客的博主 冷傲龙猫,最近开发中收集的这篇文章主要介绍Beego获取请求参数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

页面表单:

<form action="/get" method="Post">
    <tr>
        <th>用户名</th>
        <td>
        <input type="text" name="username">
      </td>
      </tr>
      <tr>
        <th>密码</th>
        <td>
         <input type="text" name="password">
      </td>
      <tr>
        <th colspan="2">
          <button id="login">Login</button>
        </th>
      </tr>
    </tr>
  </form

自定义controllers:

//自定义控制器02
type ObjectController struct {
    beego.Controller
}
//实现Post方法
func (this *ObjectController) Post() {

    username := this.GetString("username")
    password := this.GetString("password")
    fmt.Println(username, password)
    this.TplName = "main.tpl"
}

URL参数也是一样获取,Beego框架智能的为我们解析了请求参数,我们只需要通过key来获取即可

最后

以上就是冷傲龙猫为你收集整理的Beego获取请求参数的全部内容,希望文章能够帮你解决Beego获取请求参数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部