文件名称:collection-methods:将方法添加到您的MeteorJS集合中
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-01 05:11:53
JavaScript
收集方法 将方法添加到您的MeteorJS集合中 使用例 Posts = new Meteor.Collection('listings'); Posts.methods({ /** * Find all `Posts` that belong to the current user * @param query * @returns {*} */ findWithUser : function(query) { var userId = Meteor.userId();//Find the loggedin User if(!userId) { throw new Meteor.Error('NO USER LOGGED IN', 422);//Throw an error if there is no user }
【文件预览】:
collection-methods-master
----package.js(786B)
----collection-methods-tests.js(121B)
----LICENSE(1KB)
----README.md(1KB)
----collection-methods.js(151B)