您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。

11 行
219 B

4 年前
Meteor.publish("url_res",function () {
return UrlRes.find()
})
4 年前
// Meteor.publish("user_res",function () {
// return User.find()
// })
Meteor.publish("userById",function (id) {
return User.find({_id:id})
4 年前
})