当前位置:首页 > 行业动态 > 正文

html如何与python连接数据库

HTML 无法直接与 Python 连接数据库,因为 HTML 是一种标记语言,用于创建网页结构,而 Python 是一种编程语言,用于处理逻辑和数据,你可以使用 Python 的 Web 框架(如 Flask、Django 等)来创建 Web 应用程序,然后在这些应用程序中连接数据库。

以下是一个简单的示例,展示了如何使用 Flask 和 SQLite 数据库:

1、安装 Flask:

pip install Flask

2、创建一个名为 app.py 的文件,内容如下:

from flask import Flask, render_template
import sqlite3
app = Flask(__name__)
def get_db_connection():
    conn = sqlite3.connect('database.db')
    conn.row_factory = sqlite3.Row
    return conn
@app.route('/')
def index():
    conn = get_db_connection()
    posts = conn.execute('SELECT * FROM posts').fetchall()
    conn.close()
    return render_template('index.html', posts=posts)
if __name__ == '__main__':
    app.run(debug=True)

3、在项目根目录下创建一个名为 templates 的文件夹,并在其中创建一个名为 index.html 的文件,内容如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF8">
    <meta name="viewport" content="width=devicewidth, initialscale=1.0">
    <title>Python & SQLite</title>
</head>
<body>
    <h1>Posts</h1>
    <table>
        <tr>
            <th>ID</th>
            <th>Title</th>
            <th>Content</th>
        </tr>
        {% for post in posts %}
        <tr>
            <td>{{ post['id'] }}</td>
            <td>{{ post['title'] }}</td>
            <td>{{ post['content'] }}</td>
        </tr>
        {% endfor %}
    </table>
</body>
</html>

4、运行 app.py:

python app.py

现在,你可以在浏览器中访问 http://127.0.0.1:5000/,看到从 SQLite 数据库中获取的数据。

0

随机文章