私はember.jsに新しく始めています。私は、json-serverをデータ・サーバーとして使用して、基本的なRESTfulアプリケーションを開発することから始めました。emberアプリケーションをjson-serverで使用するためにどのように統合できますか?
ドキュメンテーションの数を通過した後、燃えさしがサーバーからJSON応答形式のフォーマットを標準化しているようで、それ自体で「JSON-サーバー」と互換性がありません。
燃えさし側でこれを扱うのいずれかの可能性はありますか?
エンバーバージョン:ここでは1.13
が私の現在のエラーログです:
ember.debug.js:30195 Error while processing route: tasks.index Assertion Failed: normalizeResponse must return a valid JSON API document:
* One or more of the following keys must be present: "data", "errors", "meta". Error: Assertion Failed: normalizeResponse must return a valid JSON API document:
* One or more of the following keys must be present: "data", "errors", "meta".
at new Error (native)
にあなたは(あなたのアダプタをカスタマイズする必要がありますhttps://guides.emberjs.com/v2.5.0/models/customizing-adapters/)および/またはシリアライザ(https://guides.emberjs.com/v2.5.0/models/customizing-serializers/)に準拠しますあなたのサーバー。 – Thernys