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.
我有一个用 JavaScript 和 HTML 编写的桌面应用程序。我想创建一个将连接到 AWS MYSQL 数据库实例的注册页面。我该怎么做呢?我试图搜索资源,但没有找到解决方案。
您需要编写一个服务器端脚本来侦听来自您网站的 POST 和 GET 请求,并根据它可以查询并添加到数据库的操作。您可以在 PHP、Python、NodeJS 中实现这一点,该术语称为 RESTful 实现。