时间格式我是用这样一个 helper:
import Ember from 'ember';
export default Ember.Helper.helper(function(params, hash) {
return moment(params[0]).format("YYYY-MM-DD HH:mm");
});
不错,我之前也遇到过这个问题,不过因为我涉及的 route 不多,就一个特殊情况,所以在进入这个 route 把showNavbar
值设为 true,然后在添加一个离开这个 route 的方法,把showNavbar
在设为 false。
#5 楼 @nowherekai 貌似是因为使用了namespace
#2 楼 @kikyous 感觉省略的东西还是不少,可参考源码:https://github.com/skmvasu/redis_cache_sitepoint/blob/master/app/controllers/category_controller.rb#L6
直接在 controller 里用fetch_categories
代替@categories = Category.all
。
预先生成好保存下来,需要下载的时候,直接读取下载。
也许,我们可以用两种方式去解决这个问题,当然,其实 Ember 是提供类似 Rails 的方式的,JS Bin:http://emberjs.jsbin.com/xudebamena/1/edit?html,js,console,output 方法一:
App.Route = Ember.Route.extend({
beforeModel: function(transition) {
console.log('调用extend!');
}
});
App.ApplicationRoute = App.Route.extend();
方法二:
Ember.Route.reopen({
beforeModel: function(transition) {
console.log('调用reopen!');
}
});
App.CheckRoute = Ember.Route.extend({
beforeModel: function(transition) {
this._super(transition);
console.log('进入Check!');
}
});
当然,因为方法二改的是 reopen,比较底层,我会更倾向于使用方法一的 extend。
听说新加坡的节点,是从美国过去,所以比美国的还慢。
我这个开源算电子商务吗?哈哈
https://github.com/minnowlab/giggle
Authentication methods details:
trust - anyone who can connect to the server is authorized to access the database
peer - use client's operating system user name as database user name to access it.
md5 - password-base authentication
#2 楼 @hujunxianligong 如果你只需要存在本,就把:
config.remove_previously_stored_files_after_update = false
config.upyun_username = Setting.upyun_username
config.upyun_password = Setting.upyun_password
config.upyun_bucket = Setting.upyun_bucket
config.upyun_bucket_host = Setting.upload_url
都去掉吧。
config.storage = :upyun
改成config.storage = :file
,把相关配置和相关的 gem 去掉,就是存到本地。
#14 楼 @hooluupog http://www.zhihu.com/question/28310183
Angular 团队宣布了它与微软 TypeScript 团队在 Angular 2 上紧密合作、并且聚集了 TypeScript 和 AtScript 语言的消息。 http://web.jobbole.com/82161/
使用 scss,并且:
background-image: image-url('图片地址')
The release target for Rails 5.0 is currently Fall of 2015.
依旧用 ImageMagic 来处理的。
我可以说因为 ember 的 logo 可爱,所以我选择 ember 吗?
#1 楼 @hz_qiuyuanxin 正解。
希望我 2015 年,Ember 和前端技能从初级提升到中级啊。哈。
亲,Rail 又少了一个 s 了,Rails。
#17 楼 @luolinae86 不好意思,目前我也还没有做过多图上传的。
等的好辛苦。
不知道 PostgreSQL9.3.5 升级到 PostgreSQL9.4 麻烦不?