python template.render_Python - Flask:找不到render_template()

I'm new in flask. I have this code:

Will you give me an advice what I'm doing wrong? Thanks

from flask import Flask

from flask import request

from flask import render_template

app = Flask(__name__)

@app.route('/')

def my_form():

return render_template('my-form.html')

@app.route('/', methods=['POST'])

def my_form_post():

text = request.form['text']

processed_text = text.upper()

return processed_text

app.debug = True

print("asdsa")

if __name__ == '__main__':

app.run()

I have put file my-form.html into this folder: C:\Python33\Lib\site-packages\flask\testsuite\templates

But when I refresh the 127.0.0.1:5000 I get jinja2.exceptions.TemplateNotFound:

File "C:\Python33\lib\site-packages\flask\app.py", line 1836, in __call__

return self.wsgi_app(environ, start_response)

File "C:\Python33\lib\site-packages\flask\app.py", line 1820, in wsgi_app

response = self.make_response(self.handle_exception(e))

File "C:\Python33\lib\site-packages\flask\app.py", line 1403, in handle_exception

reraise(exc_type, exc_value, tb)

File "C:\Python33\lib\site-packages\flask\_compat.py", line 33, in reraise

raise value

File "C:\Python33\lib\site-packages\flask\app.py", line 1817, in wsgi_app

response = self.full_dispatch_request()

File "C:\Python33\lib\site-packages\flask\app.py", line 1477, in full_dispatch_request

rv = self.handle_user_exception(e)

File "C:\Python33\lib\site-packages\flask\app.py", line 1381, in handle_user_exception

reraise(exc_type, exc_value, tb)

File "C:\Python33\lib\site-packages\flask\_compat.py", line 33, in reraise

raise value

File "C:\Python33\lib\site-packages\flask\app.py", line 1475, in full_dispatch_request

rv = self.dispatch_request()

File "C:\Python33\lib\site-packages\flask\app.py", line 1461, in dispatch_request

return self.view_functions[rule.endpoint](**req.view_args)

File "D:\workspace\ApproximateStringSearch\testest.py", line 9, in my_form

return render_template('my-form.html')

File "C:\Python33\lib\site-packages\flask\templating.py", line 127, in render_template

return _render(ctx.app.jinja_env.get_or_select_template(template_name_or_list),

File "C:\Python33\lib\site-packages\jinja2\environment.py", line 830, in get_or_select_template

return self.get_template(template_name_or_list, parent, globals)

File "C:\Python33\lib\site-packages\jinja2\environment.py", line 791, in get_template

return self._load_template(name, self.make_globals(globals))

File "C:\Python33\lib\site-packages\jinja2\environment.py", line 765, in _load_template

template = self.loader.load(self, name, globals)

File "C:\Python33\lib\site-packages\jinja2\loaders.py", line 113, in load

source, filename, uptodate = self.get_source(environment, name)

File "C:\Python33\lib\site-packages\flask\templating.py", line 64, in get_source

raise TemplateNotFound(template)

jinja2.exceptions.TemplateNotFound: my-form.html

解决方案

You put your template in the wrong place. From the Flask docs:

Flask will look for templates in the templates folder. So if your application is a module, this folder is next to that module, if it’s a package it’s actually inside your package:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值