Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在我的 Linux 服务器上运行的 Python 脚本。我想制作一个简单的 HTML 页面作为脚本的“前端”。它只需要从 Web 表单中获取 2 个值(该用户将插入访问网页)并将它们作为变量发送到后台的 Python 脚本,然后 Python 将使用这些值进行操作并使所有东西工作。
可能吗?
谢!
听起来你需要 CherryPy
CherryPy 文档。
对的,这是可能的。您必须使用 Django 等 Web 框架来执行此操作。
您可以使用 HTML 文件中的 name 属性接收来自 HTML 文件的输入,如果返回输出,则可以使用 value 属性。
Web 框架使用处理程序来接收数据并将其发布到 HTML 表单。
为了使用 Web 框架,您需要将它们安装在您的服务器中,就像您在 Linux 服务器中安装 python 一样。