一、问题描述

(1)首先写了一个简单的登录账号密码的页面:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="">
账号:
<input type="text" name="name">
<br>
密码:
<input type="password" name="password">
<br>
<input type="submit" name="submit">
</form>
</body>
</html>

(2)然后利用flask进行form表单渲染,文件​ ​form表单​ ​:

# -*- coding: utf-8 -*-
"""
Created on Sat Dec 25 00:34:23 2021

@author: 86493
"""
from flask import Flask, render_template

app = Flask(__name__)

@app.route('/index')
def index():
return render_template('index.html')

if __name__ == '__main__':
app.run()

(3)发现报错:​ ​jinja2.exceptions.TemplateNotFound: index.html​ ​​,即没找到我的​ ​html.py​ ​文件

二、解决方法:

首先要在​ ​form表单.py​ ​​的同级目录下创建文件夹​ ​templates​ ​​,然后把​ ​__init__.py​ ​​和我们刚才写的​ ​html​ ​文件丢进去。

解决报错:jinja2.exceptions.TemplateNotFound: index.html_python


(1)如果在pycharm中就在左侧栏右键点击mark directory as的​ ​template folder​ ​,添加jinja2的模板。

(2)我是用webstorm软件的,则不用(1)的步骤,直接能识别到同级目录下的​ ​templates​ ​​的​ ​html​ ​​文件,但是我一开始将文件夹名命名成​ ​template​ ​了,所以报错。浏览器输入网址:

解决报错:jinja2.exceptions.TemplateNotFound: index.html_flask_02


提交账号密码后,按F12,也说明这是一个GET请求:

解决报错:jinja2.exceptions.TemplateNotFound: index.html_html_03


maicropython 控制步进电机速度 编程控制步进电机

1.开发环境:Arduino IDE2.步进电机驱动器:雷赛DM8603.单片机程序//定义了板上的控制端DIR,8作为方向控制端 const int DIRPIN = 2; //定义了板上的步数端PUL,9作为步数控制端 const int STEPPIN = 5; //定义了限位开关引脚 int key1 = 10; int key2 = 11; //存储限位开关状态的变量,取值H