我是使用 Golang 和 Buffalo 的初学者。我正在尝试使用https://github.com/gobuffalo/authrecipe中的 authrecipe 创建密码身份验证服务。但是,在尝试使用 运行它buffalo dev
时,我从 JSON 转储中收到以下错误:
ERRO[2018-05-10T14:20:48-04:00] application.html: line 14: _flash.html:
line 3: flash: unknown identifier content_type=text/html db="0s" duration="5.354757ms" human_size="0 B" method=GET params="{}" path=/ render="659.229µs" request_id="fa1ad5b329-b4e23f788b" size="0" status="0"
在 application.html 文件的第 14 行,有对 flash 文件夹的引用,在我的 _flash.html 文件的第 3 行,有一个名为 flash 的变量。有没有其他人收到这个错误?你怎么修好它的?我试图删除 flash 命令,但这并没有解决问题,并且不断出现相同的错误。
application.html 代码:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>Buffalo - Coke</title>
<%= stylesheetTag("application.css") %>
<meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="<%= authenticity_token %>" />
<link rel="icon" href="<%= assetPath("images/favicon.ico") %>">
</head>
<body>
<div class="container">
<%= yield %>
</div>
<%= javascriptTag("application.js") %>
</body>
</html>
_flash.html 代码:
<div class="row">
<div class="col-md-12">
<%= for (k, messages) in flash { %>
<%= for (msg) in messages { %>
<div class="alert alert-<%= k %>" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<%= msg %>
</div>
<% } %>
<% } %>
</div>
</div>