1

我正在使用gin库创建一个简单的 crud webapp。我有一个路由设置,它检查一个参数,id如果它应该被渲染,否则返回带有 id 的员工(如果存在)当我渲染获取错误消息的模板时渗入其中。这是一个快照addadmin-employee-add.htmladmin-employee-add.html404 not found在此处输入图像描述

管理员-员工-add.html

{{template "pageStart.html" .}}
<form class="form-horizontal admin-employee">
  <div class="row form-group">
    <label for="employeeNumber" class="col-lg-2 control-label text-right">Employee #</label>
    <div class="col-lg-4">
      <span>new</span>
    </div>
    <label for="status" class="col-lg-2 control-label text-right">Status</label>
    <div class="col-lg-4">
      <span>new</span>
    </div>
  </div>
  <div class="row form-group">
    <label for="firstName" class="col-lg-2 control-label text-right">Name</label>
    <div class="col-lg-2">
      <input type="text" id="firstName" name="firstName" class="form-control">
    </div>
    <div class="col-lg-2">
      <input type="text" id="lastName" name="lastName" class="form-control">
    </div>
  </div>
  <div class="row form-group">
    <label for="startDate" class="col-lg-2 control-label text-right">Start Date</label>
    <div class="col-lg-2">
      <input type="date" id="startDate" name="startDate" class="form-control">
    </div>
    <label for="pto" class="control-label col-lg-2 col-lg-offset-2 text-right">PTO</label>
    <div class="col-lg-3">
      <input type="number" id="pto" name="pto" class="form-control">
    </div>
    <div class="col-lg-1">
      days
    </div>
  </div>
  <div class="row form-group">
    <label for="position" class="col-lg-2 control-label text-right">Position</label>
    <div class="col-lg-2">
      <select name="position" id="position" class="form-control">
        <option value="CEO">CEO</option>
        <option value="CTO">CTO</option>
        <option value="COO">COO</option>
        <option value="WorkerBee">Worker Bee</option>
      </select>
    </div>
  </div>
  <div class="col-lg-3 col-lg-offset-8">
    <button type="submit" class="btn btn-lg admin-primary">Create</button>
  </div>
</form>

创建错误的路线

r.GET("/employee/:id/", func(c *gin.Context) {
        id := c.Param("id")
        if id == "add" {
            c.HTML(http.StatusOK, "admin-employee-add.html", nil)
        }

        employee, ok := employees[id]

        if !ok {
            c.String(http.StatusNotFound, "404 not found", nil)
        } else {
            c.HTML(http.StatusOK, "admin-employee-edit.html", map[string]interface{}{
                "Employee": employee,
            })
        }

    })

错误似乎是因为 gin 正在尝试重定向/add->/add/但我已经/add/在浏览器中使用该路由。

gin的调试日志

[GIN-debug] GET    /login                    --> main.registerRoutes.func2 (3 handlers)
[GIN-debug] GET    /employee/:id/            --> main.registerRoutes.func3 (3 handlers)
[GIN-debug] GET    /employee/:id/vacation    --> main.registerRoutes.func4 (3 handlers)
[GIN-debug] GET    /admin/                   --> main.registerRoutes.func5 (4 handlers)
[GIN-debug] Listening and serving HTTP on :3000
[GIN-debug] [WARNING] Headers were already written. Wanted to override status code 200 with
404
[GIN] 2016/05/01 - 14:12:13 | 404 |    1.101426ms | 127.0.0.1 |   GET     /employee/add/

我尝试将路线更改为/:id然后显示错误。

redirecting request 301: /employee/add/ --> /employee/add
[GIN-debug] [WARNING] Headers were already written. Wanted to override status code 200 with
404

注意:此错误可以通过在 .return末尾添加一个轻松解决if id == "add"。但是这种模式使代码看起来不那么枯燥。这似乎是一个更大的httprouter问题。

4

1 回答 1

0

正如你所说,这个错误可以很容易地通过return在末尾添加一个来解决if id == "add"

c.Stringc.HTML使用相同的Context c. 在内部,它们正在写入同一个套接字(您可以将其视为文件指针)。因此,如果您调用c.Stringand thenc.HTML或反之亦然,它将按照调用的顺序附加输出。

查看您的代码,我假设您希望在看到时添加一名员工,/employee/add即提供一个 html 页面来执行此操作。哪个会得到它并/employee/<something-other-than-add-as-id>显示它 - 在这种情况下是 html 来编辑员工信息。

在这里添加 return 是有意义的,if id == "add"因为为这两个场景生成的 html 是不同的(它们使用不同的模板)。纯粹为添加单独的处理程序/employee/add/也是另一种选择。

于 2016-05-02T12:27:53.873 回答