にmomentjsを使用する私が使用しようとしている:どのようEmber.jsルータ
import moment from 'moment';
が、このエラーをスロー:
Could not find module 'moment' imported from 'myproject/routes/myroute'
簡単な使用モーメントIF()として:
model(params){
return this.get('store').query('myentity', {
filter: {
timestamp: {
$ge: moment(params.day).startOf('day').format('x'),
$le: moment(params.day).endOf('day').format('x')
}
}
});
}
このエラーをスロー:
Error while processing route: myroute Cannot read property '_calendar' of undefined TypeError: Cannot read property '_calendar' of undefined
注01:私はpredecの "瞬間" を含めると、あまりにもエンバー-CLI-ビルドの "瞬間" を含めるように私のjshintrcを更新し、バウアーからmomentjsをインポートします。
注02:私はエバーモーメントアドオンを参照していますが、他の可能なライブラリにどのように適用できるかを知りたいと思います。