diff --git a/ja/ebook/13.5.md b/ja/ebook/13.5.md index ef210d24..cc643b89 100644 --- a/ja/ebook/13.5.md +++ b/ja/ebook/13.5.md @@ -124,7 +124,7 @@ DeleteController } func (this *DeleteController) Get() { - id, _ := strconv.Atoi(this.Ctx.Params[":id"]) + id, _ := strconv.Atoi(this.Ctx.Input.Params[":id"]) blog := GetBlog(id int) this.Data["Post"] = blog models.DelBlog(blog)