我正在使用MongoDB来存储来自API的数据,每当我尝试将API数据添加到数据库中时,我得到“[thread1] ReferenceError:restaurants_db未定义”
这是我在终端输入的内容,使用mongo shell:
使用restaurants_db
"Switched to db restaurants_db"
展示收藏品
"restaurants"
"restaurantsVisited"
restaurants_db< restaurantAPI.js
[thread1] ReferenceError: restaurants_db is not defined
知道什么是错的以及我如何解决它?
这是我的API:
use restaurants_db;
db.restaurants.insert([
{
name: "Amarone",
coords: [55.9537467, -3.1944039],
},
{
name: "McDonalds",
coords: [55.9538144,-3.1928817],
},
{
name: "Pizza Hut"
coords: [55.9535647,-3.1978135],
},
]);