SO中文参考
首页
(current)
程序语言
c
java
python
c++
go
javascript
swift
c#
操作系统
linux
ubuntu
centos
unix
数据库
oracle
mysql
mongodb
postgresql
框架
node.js
angular
react-native
avalon
django
twisted
hadoop
.net
移动开发
android
ios
搜索
与Go Fiber模板引擎一起使用时,我无法在小胡子中获取部分内容{{标题}}</</desc> <question vote="2"> <p>我正在尝试为我的网站创建一个布局,其中我对页眉和页脚使用部分内容。</p> <pre><code> <!DOCTYPE html> <html lang="en"> <head> <title>{{title}}</title> <script src="https://unpkg.com/<a href="/cdn-cgi/l/email-protection" data-cfemail="0f677b627721607d684f3e21362136">[email protected]</a>" crossorigin="anonymous"></script> <link href='/static/css/global.css' rel='stylesheet'> <link href='https://fonts.googleapis.com/css?family=Rubik' rel='stylesheet'> </head> <body> {{> views/partials/header }} {{{embed}}} {{> views/partials/footer }} </body> </html> </code></pre> <p>我按照此处所示的示例进行操作:<a href="https://stackoverflow.com">https://docs.go Fiber.io/template/mustache/</a></p> <p>嵌入工作正常,但部分不起作用。</p> <p>我的文件结构是这样的:</p> <pre><code>views ├── layout.mu └── partials ├── header.mu └── footer.mu </code></pre> <p>这是我如何设置应用程序和路线:</p> <pre><code>engine := mustache.New("./views", ".mu") app := fiber.New(fiber.Config{Views: engine}) app.Get("/", func(c *fiber.Ctx) error { return c.Render("index", fiber.Map{ "title": "index", }, "layout") }) </code></pre> <p>最后这是我的标题:</p> <pre><code><nav class="navigation"> <a href="/"><img alt="" class="logo" src="/static/images/logo.png"/></a> <ul class="items"> <li> <a class="links" href="/product">Produkt</a> </li> <li> <a class="links" href="/blog">Blogg</a> </li> <li> <a class="links" href="/about">Om Oss</a> </li> <li> <a class="links contact" href="/contact">Kontakta Oss</a> </li> </ul> </nav> </code></pre> </question> <answer tick="false" vote="0"> <p>我想你现在可能已经解决了。 但对于未来的用户,我将解决方案发布在这里。</p> <p>文件扩展名必须是 <pre><code>.mustache</code></pre>,否则模板引擎将无法从包含的部分文件中渲染文件。</p> </answer> </body></html>
问题描述
投票:0
回答:0
go
mustache
go-fiber
最新问题
Alembic 在自动生成期间不断删除和重新创建外键
API 和 Web 工具之间的 Pagespeed 结果不同
MAUI - 更改 iOS 的 AppIcon 和 SplashScreen
Authorize.net 退款交易错误:命名空间中的子元素“付款”无效
使用Python将MySql中的数据导入到Ms.Excel ListObject中
如何在cPanel文件管理中编辑大小超过1MB的(PHP)文件?
如何从 `script.runInContext` 的结果中获取 AST 表示(无损)?
Window.open 仅在 axios.post 后返回未定义
如何在子文件夹中使用CodeIgniter 4.6?
JavaScript 中的“辅助变量”是什么?
Makefile 覆盖命令
propagate = 永远不会在 spring 中创建事务
如何在mysql数据库中存储和显示©和ø并用PHP显示
从Android如何检查应用程序是从App Bundle还是APK安装的
Flutter - 分页数据表底部字体着色和布局
设置渲染属性时不调用 JSF commandButton 操作[重复]
Django HTTP 响应始终设置 `sessionid` cookie 并且会话数据不持久
登录时如何切换数据库?
配置 sqlfluff,使其不会自动修复特定规则
除了 SonarQube [已关闭] 之外还有其他质量管理工具吗
© www.soinside.com 2019 - 2024. All rights reserved.