我是mongodb
和loopback
的新手。我想發送數據並將數據從我的應用程序保存到數據庫。我怎樣才能做到這一點?如何爲回鈴音製作mongodb的後期API
更新 店型號:
{
"shopname": "string",
"tel": "string",
"latlng": "string",
"address": "string",
"id": "string",
"personId": "string"
}
捲曲:
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{ \
"shopname": "spring", \
"tel": "12345678", \
"latlng": "52.1106986,21.7768998", \
"address": "05-319 Skwarne, Poland" \
}' 'http://localhost:3000/api/shops'
現在我應該在shops.js
寫信給一個API,使用應用程序發送數據到數據庫?
'use strict';
module.exports = function(Shops) {
};
你有沒有試過把它輸入到谷歌? https://loopback.io/doc/en/lb2/Connecting-to-MongoDB.html –
@ p.streef是的,其實我讀過這篇文章,發現我必須爲CRUD編寫函數。但我怎麼寫什麼,我不清楚。 – RSA
那麼,那麼也許你應該在你的問題中分享?如果你想讓人幫助你,你應該表現出努力。分享您嘗試過並且無法使用的代碼,以及爲什麼它無法使用。 –