admin管理员组文章数量:1345069
I have this a model
in this path:
/my-project/app/models/my-model.js
And I want to import it from a route
in this path:
/my-project/app/routes/battles/battle/bats/new.js
The import sentence looks like this:
import MyModel from '../../../../models/my-model';
The path is insane, I have to use the try and error system to figure out it. Also if I want to import the same model in another ponent I can't just copy&paste because this path is only valid from an specific path. For the same reason if I change the path of the ponent importing my model I have to update the import path.
I would like to have path relative to the root of the project, something like:
import MyModel from '/models/my-model';
Is this possible?
I have this a model
in this path:
/my-project/app/models/my-model.js
And I want to import it from a route
in this path:
/my-project/app/routes/battles/battle/bats/new.js
The import sentence looks like this:
import MyModel from '../../../../models/my-model';
The path is insane, I have to use the try and error system to figure out it. Also if I want to import the same model in another ponent I can't just copy&paste because this path is only valid from an specific path. For the same reason if I change the path of the ponent importing my model I have to update the import path.
I would like to have path relative to the root of the project, something like:
import MyModel from '/models/my-model';
Is this possible?
Share Improve this question asked Dec 21, 2015 at 12:21 fguillenfguillen 38.9k24 gold badges164 silver badges234 bronze badges 2-
1
import Potato from
app-name/potato-folder/potato-file/
– Patsy Issa Commented Dec 21, 2015 at 12:30 - @Kitler, it works.. can you create an Answer with this ment so I can accept it?.. ups.. looks like someone has already done it :) – fguillen Commented Dec 21, 2015 at 13:28
1 Answer
Reset to default 16Ember CLI registers everything in app/
under the project name, so the import should look like this:
import MyModel from 'my-project/models/my-model';
本文标签: javascriptEmberJSHow to import files using root pathStack Overflow
版权声明:本文标题:javascript - EmberJS, How to import files using root path? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743754272a2533218.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论