How can I use nested templates with Echo?

polaris · · 489 次点击    
这是一个分享于 的资源,其中的信息可能已经有所发展或是发生改变。
<p>Hi guys! </p> <p>Someone knows how to use echo with nested templates? I&#39;m using echo for a side project, and I read their doc <a href="https://echo.labstack.com/guide/templates" rel="nofollow">https://echo.labstack.com/guide/templates</a>, but I never used golang templates before, and I don&#39;t know how can I change the method <code>render</code> to use a base layout and some nested templates.</p> <p>Something like this:</p> <pre><code>server.go \views - layout.tmpl - about.tmpl - index.tmpl //layout.tmpl {{ define &#34;layout&#34; }} &lt;html&gt; &lt;head&gt; {{ block &#34;title&#34; . }} &lt;/head&gt; &lt;body&gt; {{ block &#34;content&#34; . }} &lt;/body&gt; &lt;/html&gt; {{ end }} //index.tmpl {{ define &#34;title&#34; }} &lt;title&gt; my index title &lt;/title&gt; {{ end }} {{ define &#34;content&#34; }} &lt;h3&gt; my index content &lt;/h3&gt; {{ end }} //about.tmpl {{ define &#34;title&#34; }} &lt;title&gt; my about title &lt;/title&gt; {{ end }} {{ define &#34;content&#34; }} &lt;h3&gt; my about content &lt;/h3&gt; {{ end }} </code></pre> <p>Thanks!</p> <hr/>**评论:**<br/><br/>Nazariglez: <pre><p>The answer! -&gt; <a href="https://gist.github.com/rand99/808e6e9702c00ce64803d94abff65678" rel="nofollow">https://gist.github.com/rand99/808e6e9702c00ce64803d94abff65678</a></p></pre>

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

489 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传