@belgoros wrote:
I’m using ember-data-url-templates add-on in Ember 3.1 app. This add-on has an option
host
to pass in as follows:// adapters/comment import Ember from "ember"; import DS from "ember-data"; import UrlTemplates from "ember-data-url-templates"; export default DS.RESTAdapter.extend(UrlTemplates, { urlTemplate: '{+host}/comments{/id}', queryUrlTemplate: '{+host}/comments{?query*}', createRecordUrlTemplate: '{+host}/users/{userId}/comments', session: Ember.inject.service(), urlSegments: { userId() { return this.get('session.userId'); } } });
How to make use of
ENV.apiHost = 'http://localhost:3000';
defined inenvironment.js
file ?I tried to define
localhost:3000
for development:if (environment === 'development') { ENV.apiHost = 'http://localhost:3000'; ...
I defined it to use in
application.js
adapter:#adapters/application.js export default JSONAPIAdapter.extend(DataAdapterMixin, { authorizer: 'authorizer:application', host: config.apiHost, ...
If I start the Ember app pass in
--proxy='http://localhost:3000
option , everything works. However, I believed that I could omit this option as it is already defined.So if start the app without
proxy
option, it fails because it tries to requestlocalhost:4200...
:GET http://localhost:4200/shops/613/address 404 (Not Found)
Any idea ? Thank you.
Posts: 2
Participants: 1