lua 的模板 lua-resty-template

https://github.com/bungle/lua-resty-templatehttps://github.com/bungle/lua-resty-template解压后:将 lib里面的文件(template.lua + template目录)复制到 openresty-1.21.4.1-win64\lualib\resty下

注:模板错误信息输出在  Nginx 日志中 log\error.log

Nginx 配置

http{
    
    init_by_lua_block {
        template = require 'resty.template'
    }
    
    server {
        ......
        set $template_root ./site/demo/tpl;
        location /tpl
        {
            default_type text/html;
            content_by_lua "
                local html = template.compile('view.html')({ message = 'Hello, World!' })
                ngx.print(html)
            ";
        }
        ......
    }
}

view.html

<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>{{message}}</title>
</head>
<body>
<h1>{{message}}</h1>
</body>
</html>
<html>
<body>
<ul>
{% for _, user in ipairs(users) do %}
    {(user.html, user)}
{% end %}
</ul>
</body>
</html>


user.html

<li>User {{name}} is of age {{age}}</li>
<html>
<body>
{% if state==1 then %}
    abc
{% elseif state==2 then %}
    123
{% else %}
    ...
{% end %}
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值