作为前端开发人员,等待 API 交付是一件痛苦的事情。如果有一个内置 API 的奇迹数据库会怎样?好吧,这不再是幻想了。 Injee 是一个数据库,为前端开发人员提供了随时可用的 CRUD API。通过阅读本页,您将学习如何使用Injee,在injee中创建书籍记录,并且您将学习如何操作和搜索数据。
您只需执行此操作一次。访问 https://java.com 为您的计算机下载 Java。一旦安装在您的 CMD 或终端上,输入 java --varsion ,它就必须工作。
您可以点击这里下载injee。或者在您的终端中使用:
$ wget https://codeberg.org/injee/injee/releases/download/0.2.0/injee-0.2.0.jar
导航到下载 injee jar 文件的目录,并使用以下命令运行它:
$ java -jar injee-0.2.0.jar
让我们检查一下服务器是否正在运行。我们使用 API GET http://localhost:4125/ops/health.
在您的终端中尝试:
$ curl -X GET http://localhost:4125/ops/health
输出应该是
{ "health": "ok" }
所以让我们创建一个书籍存储库,神奇的是,injee 有 API POST http://localhost:4125/api/books 来创建一本书。如果您想创建汽车存储库,injee 有 API POST http://localhost:4125/api/cars API。那么让我们创建一本书并将其存储在 injee 中:
$ curl -X POST http://localhost:4125/api/books \ -H "Content-Type: application/json" \ -d '{"title": "Treasure Island", "author": "Robert Louis Stevenson"}'
输出
{ "title": "Treasure Island", "author": "Robert Louis Stevenson", "id": "722e2b57-59cc-4254-85b5-562858264f75" }
因此,injee 存储这本书,并给出一个 JSON,其中包含您发送给 injee 的所有值,以及一个 UUID,该 UUID 被分配给名为 id 的 ney。
现在让我们创建另一本书:
$ curl -X POST http://localhost:4125/api/books \ -H "Content-Type: application/json" \ -d '{"title": "Adventures of Huckleberry Finn", "author": "Mark Twain"}'
输出
{ "title": "Adventures of Huckleberry Finn", "author": "Mark Twain", "id": "689976e3-082e-4943-9525-a21b47cba325" }
并且有效!
现在列出我们使用的所有书籍 GET http://localhost:4125/api/books:
$ curl -X GET http://localhost:4125/api/books
输出
[ { "title": "Treasure Island", "author": "Robert Louis Stevenson", "id": "722e2b57-59cc-4254-85b5-562858264f75" }, { "title": "Adventures of Huckleberry Finn", "author": "Mark Twain", "id": "689976e3-082e-4943-9525-a21b47cba325" } ]
我们存储了一系列不错的书籍。
现在让我们只获取一本书,为此我们使用 API GET http://localhost:4125/api/books/:id:
$ curl -X GET http://localhost:4125/api/books/689976e3-082e-4943-9525-a21b47cba325
输出
{ "title": "Adventures of Huckleberry Finn", "author": "Mark Twain", "id": "689976e3-082e-4943-9525-a21b47cba325" }
因此,如果我在前面加上 id GET http://localhost:4125/api/books/,我就会得到一本书的详细信息。
要更新书籍,请使用 PUT 和 http://localhost:4125/api/books/:id,后跟书籍的参数:
$ curl -X PUT http://localhost:4125/api/books/689976e3-082e-4943-9525-a21b47cba325 \ -H "Content-Type: application/json" \ -d '{"title": "Adventures of Tom Sawyer"}'
输出
{ "title": "Adventures of Tom Sawyer", "author": "Mark Twain", "id": "689976e3-082e-4943-9525-a21b47cba325" }
正如您在上面看到的,书名已从《哈克贝利·费恩历险记》更改为《汤姆·索亚历险记》。
现在让我们列出所有书籍:
$ curl -X GET http://localhost:4125/api/books
输出
[ { "title": "Treasure Island", "author": "Robert Louis Stevenson", "id": "722e2b57-59cc-4254-85b5-562858264f75" }, { "title": "Adventures of Tom Sawyer", "author": "Mark Twain", "id": "689976e3-082e-4943-9525-a21b47cba325" } ]
确认我们的更新。
现在让我们删除一本书。为此,请使用 DELETE 和 http://localhost:4125/api/books/:id:
$ curl -X DELETE http://localhost:4125/api/books/689976e3-082e-4943-9525-a21b47cba325
输出
不会有输出,如果您在代码中尝试并接收响应对象,您应该得到状态 204。
现在我们列出所有书籍,并确认《汤姆索亚历险记》已被删除:
$ curl -X GET http://localhost:4125/api/books
输出
[ { "title": "Treasure Island", "author": "Robert Louis Stevenson", "id": "722e2b57-59cc-4254-85b5-562858264f75" } ]
现在让我们创建一个用户:
$ curl -X POST http://localhost:4125/api/users \ -H "Content-Type: application/json" \ -d '{"name": "Karthik"}'
输出
{ "name": "Karthik", "created_at": "2024-07-22T11:18:42Z", "updated_at": "2024-07-22T11:18:42Z", "id": "ad100ab0-7893-421d-9233-353cc8899aa9" }
现在我们的数据库中必须有两个表,即 books 和 users,让我们使用以下 API 列出它们:
$ curl -X GET http://localhost:4125/ops/tables
输出
[ "books", "users" ]
让我们在用户表中添加另一条用户记录:
$ curl -X POST http://localhost:4125/api/users \ -H "Content-Type: application/json" \ -d '{"name": "Pari"}'
现在让我们获取所有用户并确认我们的添加
$ curl -X GET http://localhost:4125/api/users
[ { "name": "Karthik", "created_at": "2024-07-22T11:18:42Z", "updated_at": "2024-07-22T11:18:42Z", "id": "ad100ab0-7893-421d-9233-353cc8899aa9" }, { "name": "Pari", "created_at": "2024-07-22T11:23:27Z", "updated_at": "2024-07-22T11:23:27Z", "id": "1f06bb65-1f2d-4980-9cfc-cf3d38c9db7e" } ]
现在让我们在 users 中搜索字符串:
$ curl -X GET http://localhost:4125/api/users?q=Pari
[ { "name": "Pari", "created_at": "2024-07-22T11:23:27Z", "updated_at": "2024-07-22T11:23:27Z", "id": "1f06bb65-1f2d-4980-9cfc-cf3d38c9db7e" } ]
现在让我们将数据库备份到名为 backup.json 的文件中:
$ curl -X GET http://localhost:4125/ops/save?file=backup.json
输出
{ "message": "saved to file backup.json" }
最后,要停止 injee,请在运行 injee 的终端中按 Ctrl c 在运行 injee 的终端中停止它。
让我们再次开始injee:
$ java -jar injee-0.2.0.jar
$ curl -X GET http://localhost:4125/ops/load?file=backup.json
输出
{ "message": "loaded from file backup.json" }
所以你已经恢复了原来的数据库并运行了。恭喜。
了解 Injee 最新动态的最佳方法之一是关注其页面 https://injee.codeberg.page/ ,或关注其 RSS https://codeberg.org/injee.rss
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3