烧瓶渲染模板

时间:2019-12-25 19:53:38

标签: python flask jinja2

我尝试将数据插入到我的模板render_template中。

data = Bill.bill_data(self)
        return render_template('templates/bill.html', **data)

票据模板在文件夹模板中的位置。但是我遇到了这个错误

jinja2.exceptions.TemplateNotFound: templates/bill.html

我的数据如下:

data={
        "payer_currency": "5",
        "shop_amount": "5",
        "shop_currency": "5",
        "shop_id": "5",
        "shop_order_id": "12",
        "sign": ""
        }

1 个答案:

答案 0 :(得分:0)

您不必在路径中添加https://website.tld/link/to/page?param1=value1&param2=value2&...&paramN=valueN 。默认情况下,templates/搜索文件夹render_template中的模板

templates