最近在学习用 Emberjs 写一个 twitter 的 following 功能,类似 rails 中的(www.railstutorial.org/book/following_users):
class CreateRelationships < ActiveRecord::Migration
def change
create_table :relationships do |t|
t.integer :follower_id
t.integer :followed_id
t.timestamps null: false
end
add_index :relationships, :follower_id
add_index :relationships, :followed_id
add_index :relationships, [:follower_id, :followed_id], unique: true
end
end
但是看了 Ember data 的 常见 association,没有发现什么好的实现的方案,google 了半天也没有什么头绪。请问大家该如何实现,或者有什么资料可以参考?