From 8133583c60f3f95d2c3450157bf52973764211fd Mon Sep 17 00:00:00 2001
From: 2509165014 <2509165014@student.edu.cn>
Date: Sun, 5 Jul 2026 23:00:57 +0800
Subject: [PATCH] 1
---
movies.html | 152 ++++++++++++++++++++++++++++++++++++++++++++++++++++
movies.json | 105 ++++++++++++++++++++++++++++++++++++
2 files changed, 257 insertions(+)
create mode 100644 movies.html
create mode 100644 movies.json
diff --git a/movies.html b/movies.html
new file mode 100644
index 0000000..87bd67c
--- /dev/null
+++ b/movies.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+ 电影列表
+
+
+
+ 电影列表
+ 数据编号:B-20260705-8470
+
+
+
+
+ | 编号 |
+ 电影名 |
+ 导演 |
+ 上映年份 |
+ 评分 |
+ 时长(分钟) |
+ 类型 |
+ 主演数 |
+
+
+
+
+
+ | 1 |
+ 千与千寻 |
+ Frank Darabont |
+ 2016 |
+ 6.4 |
+ 118 |
+ 喜剧 |
+ 4 |
+
+
+
+ | 2 |
+ 阿甘正传 |
+ 陈凯歌 |
+ 2004 |
+ 9.2 |
+ 125 |
+ 悬疑 |
+ 2 |
+
+
+
+ | 3 |
+ 忠犬八公的故事 |
+ Robert Zemeckis |
+ 1999 |
+ 8.6 |
+ 139 |
+ 爱情 |
+ 3 |
+
+
+
+ | 4 |
+ 三傻大闹宝莱坞 |
+ James Cameron |
+ 2023 |
+ 9.5 |
+ 151 |
+ 冒险 |
+ 5 |
+
+
+
+ | 5 |
+ 放牛班的春天 |
+ 宫崎骏 |
+ 2018 |
+ 7.8 |
+ 177 |
+ 冒险 |
+ 4 |
+
+
+
+ | 6 |
+ 肖申克的救赎 |
+ Christopher Nolan |
+ 2018 |
+ 7.9 |
+ 145 |
+ 爱情 |
+ 5 |
+
+
+
+ | 7 |
+ 泰坦尼克号 |
+ Lasse Hallström |
+ 1994 |
+ 6.7 |
+ 178 |
+ 悬疑 |
+ 3 |
+
+
+
+ | 8 |
+ 星际穿越 |
+ Rajkumar Hirani |
+ 1993 |
+ 8.9 |
+ 91 |
+ 剧情 |
+ 4 |
+
+
+
+ | 9 |
+ 霸王别姬 |
+ Christophe Barratier |
+ 2012 |
+ 6.6 |
+ 169 |
+ 科幻 |
+ 3 |
+
+
+
+ | 10 |
+ 盗梦空间 |
+ Christopher Nolan |
+ 1997 |
+ 8.6 |
+ 123 |
+ 科幻 |
+ 5 |
+
+
+
+
+
+
\ No newline at end of file
diff --git a/movies.json b/movies.json
new file mode 100644
index 0000000..4f00612
--- /dev/null
+++ b/movies.json
@@ -0,0 +1,105 @@
+{
+ "ID": "B-20260705-8470",
+ "movies": [
+ {
+ "id": 1,
+ "title": "千与千寻",
+ "director": "Frank Darabont",
+ "year": 2016,
+ "rating": 6.4,
+ "duration": 118,
+ "genre": "喜剧",
+ "actors_count": 4
+ },
+ {
+ "id": 2,
+ "title": "阿甘正传",
+ "director": "陈凯歌",
+ "year": 2004,
+ "rating": 9.2,
+ "duration": 125,
+ "genre": "悬疑",
+ "actors_count": 2
+ },
+ {
+ "id": 3,
+ "title": "忠犬八公的故事",
+ "director": "Robert Zemeckis",
+ "year": 1999,
+ "rating": 8.6,
+ "duration": 139,
+ "genre": "爱情",
+ "actors_count": 3
+ },
+ {
+ "id": 4,
+ "title": "三傻大闹宝莱坞",
+ "director": "James Cameron",
+ "year": 2023,
+ "rating": 9.5,
+ "duration": 151,
+ "genre": "冒险",
+ "actors_count": 5
+ },
+ {
+ "id": 5,
+ "title": "放牛班的春天",
+ "director": "宫崎骏",
+ "year": 2018,
+ "rating": 7.8,
+ "duration": 177,
+ "genre": "冒险",
+ "actors_count": 4
+ },
+ {
+ "id": 6,
+ "title": "肖申克的救赎",
+ "director": "Christopher Nolan",
+ "year": 2018,
+ "rating": 7.9,
+ "duration": 145,
+ "genre": "爱情",
+ "actors_count": 5
+ },
+ {
+ "id": 7,
+ "title": "泰坦尼克号",
+ "director": "Lasse Hallström",
+ "year": 1994,
+ "rating": 6.7,
+ "duration": 178,
+ "genre": "悬疑",
+ "actors_count": 3
+ },
+ {
+ "id": 8,
+ "title": "星际穿越",
+ "director": "Rajkumar Hirani",
+ "year": 1993,
+ "rating": 8.9,
+ "duration": 91,
+ "genre": "剧情",
+ "actors_count": 4
+ },
+ {
+ "id": 9,
+ "title": "霸王别姬",
+ "director": "Christophe Barratier",
+ "year": 2012,
+ "rating": 6.6,
+ "duration": 169,
+ "genre": "科幻",
+ "actors_count": 3
+ },
+ {
+ "id": 10,
+ "title": "盗梦空间",
+ "director": "Christopher Nolan",
+ "year": 1997,
+ "rating": 8.6,
+ "duration": 123,
+ "genre": "科幻",
+ "actors_count": 5
+ }
+ ]
+}
\ No newline at end of file