foreman 有点问题啊..运行之后的屏幕回显不及时。有好些信息都没有直接打出来 ( 按 之后关闭所有进程之后才会显示). 像是缓存着一样...
#7 楼 @qichunren 啊..? 你说的不是这种队列吗?试试看 resque?
啊..没人鸟..好伤心....
为了让它看起来有 ActiveRecord 那样舒服直观,于是给 User Model 加上了这个属性
class User
def subscriptions
Subscriptions.filter(:user => self)
end
end
啊~~最后无意发现,好像这样能行:
加上 Subscription Model
class Subscription < Sequel::Model
# create_table? :subscriptions do
# primary_key :id
# foreign_key :fiction_id, :fictions
# foreign_key :user_id, :users
# foreign_key :check_id, :check_lists
# end
many_to_one :user
many_to_one :fiction
end
然后用 filter 语句
Subscription.filter(:user => User.first)
就行了
在 Advanced Associations 里面找到一些关于实现 ActiveRecord 中的 has_many :through
关系的资料,他这样说的:
ActiveRecord
class Author < ActiveRecord::Base
has_many :authorships
has_many :books, :through => :authorships
end
class Authorship < ActiveRecord::Base
belongs_to :author
belongs_to :book
end
@author = Author.find :first
@author.books
Sequel
class Author < Sequel::Model
one_to_many :authorships
many_to_many :books, :join_table=>:authorships
end
class Authorship < Sequel::Model
many_to_one :author
many_to_one :book
end
@author = Author.first
@author.books
但是在 ActiveRecord 里面可以用 Author.first.authorships
来找到关系对象然后取出附加属性,在 Sequel 里面却不行..
另外据说我这样的数据库设计有点奇怪。能不能给我提点意见?
#3 楼 @tudou #5 楼 @poshboytl 和楼主.. 似乎那是 coda 哦~
#15 楼 @happypeter 你在 linux 下面用的是什么录像软件啊,右下角还有按键提示的,赞...
用 Rails 的 metal 似乎可以比较方便的达成啊... 看 RailsCasts #150
下面是一些我在 twitter 上的吐槽
Agile Web Development with Rails 中文第四版从第 20 章开始之后的翻译质量太次了!! 你试试看这句:'虽然大部分存留持续请求的状态属于数据库,且是通过 active record 访问的,但是其他一些位状态有不同的寿命持续和不同的需要进行管理'
居然把'some other bits of state have different life spans and need to be managed differently'翻译成了'但是其他一些位状态有不同的寿命持续和不同的需要进行管理' -- 《Web 开发敏捷之道》
接着我还尝试给骆古道的 twitter 发推
@cnruby hi. 你是 agile web development with rails 的译者'骆古道'吗?我实在是想吐槽一下这中文第四版的翻译质量啊。从第 20.3 开始简直就不是中文啊,然后 20.3.1 的第二段还写着 3.0 的默认选择,原版已经改成了 3.1
@cnruby 然后中文第四版的第 256 页最下面的注意事项,原版中的 'If you store any Rails model objects in a session,' 这段居然就没了......
这次的地点不确定了吗..?
#3 楼 @aNdReW_Qx 恩好的... :role 参数我看过....只是觉得这不应该是解决我这个问题的办法...
#1 楼 @aNdReW_Qx 泪奔.......居然还有这种配置............果然如此..
在回复里上传的图片也是这么进 cdn 的么..?
= =...咦..感觉我很合适的样子............
大概玩遊戲可以增加解謎相關的思考?我女朋友就從小不玩遊戲,結果現在 iOS 上的的 小鱷魚洗澡
都不太解的出來...
啊..為什麼要用 system
呢?為啥不用內置的方法 rmdir ?