作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序在不应该发布的情况下发布了“memberPrice”字段。在我的publish.js 文件中,我指定不发布memberPrice。这是我的 server/publish.js:
Meteor.publish('cars', function() {
return Products.find({category: 'vehicle'}, {limit: 10}, {fields: {memberPrice: 0}});
});
我的 Controller :
carsController = RouteController.extend({
waitOn: function () {
var sessionId = Session.get('sessionId');
console.log("Session: ", sessionId);
Meteor.subscribe('cars');
Meteor.subscribe('cartItems', sessionId);
},
action: function() {
this.render('Cars');
}
});
这是我使用 aldeed:tabular 包的表格:
TabularTables = {};
Meteor.isClient && Template.registerHelper('TabularTables', TabularTables);
TabularTables.Cars = new Tabular.Table({
name: "Cars",
collection: Products,
columns: [
{data: "productCode", title: "Product Code"},
{data: "brand", title: "Brand"},
{data: "productLineName", title: "Product Name"},
{data: "description", title: "Description"},
{data: "memberPrice", title: "Member Price"}
]
});
有谁知道这是怎么回事吗?
谢谢!
最佳答案
您将三个参数传递给 Products.find
,但它只需要两个。 {limit: 10}, {fields: {memberPrice: 0}}
应为 {limit: 10, fields: {memberPrice: 0}}
。
关于javascript - meteor 出版领域问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29396425/
所以我的应用程序中有 Google 的 AdMob,我想知道在模拟器或设备上测试时用于显示测试添加的几行代码。 这是我使用的代码(如 Google Dev docs/tutorials 所示): //
我是一名优秀的程序员,十分优秀!