最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - EmberJS, How to import files using root path? - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 16

Ember CLI registers everything in app/ under the project name, so the import should look like this:

import MyModel from 'my-project/models/my-model';
发布评论

评论列表(0)

  1. 暂无评论