我在我的项目中嵌入了模板模板(Kitura https://github.com/IBM-Swift/Kitura,模板引擎Stencil https://github.com/kylef/Stencil#include)。我不明白如何使用标记row_number var1 var2
1 1921 16
4 1922 17
5 1703 29
9 1704 30
13 1705 31
。
我的例子,但没有工作。
example.stencil.html
{% include "comment.html" %}
include.stencil.html
<html>
<head>
hello example
{% include "include.stencil.html" %}
</head>
</html>
代码swift
<b>I'm here</b>
错误:错误:&#39; include.stencil.html&#39;找不到模板 ../ include.stencil.html
如何使用它,帮助我PLZ。 :)
答案 0 :(得分:0)
看起来是因为你已经在路径中包含了你的文件名。路径应该只是文件位置的路径,不包括文件本身的名称。
let pathTemp=Path("/path/to/my/file/")