因此,我正在尝试通过将此代码转换为 Flask 来学习 Flask 的 TDD。一段时间以来,我一直在尝试寻找如何将模板呈现为字符串。这是我尝试过的:
render_template(...)
render_template_string(...)
make_response(render_template(...)).data
而且它们似乎都不起作用。
每种情况下的错误似乎是
"...templating.py", line 126, in render_template
ctx.app.update_template_context(context)
AttributeError: 'NoneType' object has no attribute 'app'
intemplating.py
的render_template
函数。
我的测试代码如下:
def test_home_page_can_save_POST_request(self):
with lists.app.test_client() as c:
c.get('/')
rv = c.post('/', data = {'item_text':"A new list item"})
# This test works
self.assertIn("A new list item", rv.data)
# This test doesn't
self.assertEqual(rv.data,flask.make_response(flask.render_template('home.html',new_item_text='A new list item')).data)
如下home.html
:
<html>
<body>
<h1>Your To-Do list</h1>
<form method="POST">
<input name="item_text" id="id_new_item" placeholder="Enter a to-do item" />
</form>
<table id="id_list_table">
<tr><td>{{ new_item_text }}</td></tr>
</table>
</body>
</html>
编辑:我添加了更多文件,因为错误可能与实际使用的功能无关。我正在使用Celeo在他的回答中所建议的内容。