1
在休耕模式中,我想製作一個Web服務來發送數據並將其保存到數據庫中。如何使一個web服務通過環回在mongodb中通過url發送數據?
localhost:3000/api/shops/shopname=cafe del mar&tel=123456&latlng=50.35;56.44&personId=1729451234
商店模型
{
"shopname": "string",
"tel": "string",
"latlng": "string",
"address": "string",
"id": "string",
"personId": "string"
}
tnx,但它顯示了下面的錯誤:。 錯誤 404未知「shop」id「create-new-shop」。 status:404 code:MODEL_NOT_FOUND 錯誤:未知「shop」id「create-new-shop」。 – RSA
更改您的「id」屬性的名稱。 Loopback具有名爲「id」的默認主鍵屬性。也許他們互相干擾。請讓我知道如果問題解決了。 – tashakori
我認爲它與'var shop = new app.models.Shop(instance)'有關,因爲它在explorer中顯示:'「message」:「app is not defined」, 「stack」:「ReferenceError:app is not定義\ n'。在server.js應用程序中已定義 – RSA