将数据写入 MongoDB
1
2
3
4
向 API 发布请求
创建一个名为movie.json
的文件并插入以下数据:
{ "title": "The Laravel MongoDB Quick Start", "year": 2024, "runtime": 15, "imdb": { "rating": 9.5, "votes": 1 }, "plot": "This movie entry was created by running through the Laravel MongoDB Quick Start tutorial." }
通过在 shell 中运行以下命令,将 JSON 有效负载作为POST
请求发送到端点:
curl -H "Content-Type: application/json" --data @movie.json http://localhost:8000/api/movies
5
查看数据
打开 http://127.0.0.1 :8000 /browse_movies 查看您提交的电影信息。插入的电影出现在结果的顶部。
注意
如果您遇到问题,请在MongoDB Community论坛中寻求帮助,或使用页面右侧或右下角的 Rate this page 标签页提交反馈。