meteor collection helpers::gear:Meteor软件包可让您在收藏中定义助手 源码

pirate30532 2 0 ZIP 2021-04-20 22:04:39

流星收集助手 集合助手使用Meteor的Mongo.Collection transform选项自动在您的集合上设置transform ,从而允许具有类似于模板助手的界面的简单模型。 安装 $ meteor add dburles:collection-helpers 用法 将您的助手写在客户端和服务器都可以看到的地方。 Books = new Mongo . Collection ( 'books' ) ; Authors = new Mongo . Collection ( 'authors' ) ; Books . helpers ( { author ( ) { return Authors . findOne ( this . authorId ) ; } } ) ; Authors . helpers ( { fullName ( ) { retu

用户评论
请输入评论内容
评分:
暂无评论