28

我正在考虑node.js为即将到来的项目使用工具,用于学习和绩效目的。例如,Rails 中的一些模型:

class User
  has_many :topics
  has_many :friends
  has_many :friend_users, :through => :friends
  has_many :friend_topics, :through => :friend_users, :source => :topics      
end

class Friend
  belongs_to :user
  belongs_to :friend_user, :class_name => "User", 
      :foreign_key => :phone_no, :primary_key  => :phone_no
end

class Topic
  belongs_to :user
end

允许优雅的查询代码,例如:

latest_10_topics_from_friends = current_user.friend_topics.limit(10)

并生成优化的 SQL。node.js生态系统中有类似的东西吗?

4

4 回答 4

14

水线似乎是您正在寻找的东西。它是由 Sails Project 背后的同一个人创建的。

https://github.com/balderdashy/waterline

于 2013-11-12T18:54:32.780 回答
12

更新的答案

使用续集


老答案:

看看项目。您可以按如下方式定义模型:

# app/models/user.coffee
class App.User extends Tower.Model
  @belongsTo "author", type: "User"
  @belongsTo "commentable", polymorphic: true
  @has_many "topics"
  @has_many "friends"
  @has_many "friend_users", through: "friends"
  @has_many "friend_topics", through: "friends_users", source: "topics"

# app/models/friend.coffee
class App.Friend extends Tower.Model
  @belongs_to "user"
  @belongs_to "friend_user", type: "User", 
                foreign_key: "phone_no", primary_key: "phone_no"

# app/models/topic.coffee
class App.Topic extends Tower.Model
  @belongs_to "user"

现在您将能够查询您的数据

current_user.friend_topics().limit(10)
于 2012-07-09T19:35:04.990 回答
5

如果你使用的是 MySql,你可以试试 Sequelize.js。很难达到 ActiveRecord 提供的功能数量,但尽管如此,我一直在使用 Sequelize,它是 Node.js 的一个很好的解决方案

其他数据库还有其他几种 ORM 解决方案,您可以在此处查看它们http://search.npmjs.org/

于 2012-07-09T11:00:36.543 回答
0

mongoose可能是最接近的类比,尽管它是针对文档存储而不是像 rails/active record 这样的关系数据库

于 2014-02-26T21:52:33.597 回答