我试图将一个变量乘以几个浮点数插入到这样的流星集合中,并在反应表中使用它。它不起作用,我不知道我是否能做到这一点。这是我的代码:
Template.cover.events({
'submit .js-ftp-submit': function(event) {
console.log("Clicked");
var ftp, lthr;
ftp = event.target.ftp.value;
lthr = event.target.lthr.value;
console.log("ftp: " + ftp + " lthr : " + lthr);
if (Meteor.user()) {
Zones.insert({
end_pwr_1: ftp * .56,
end_pwr_2: ftp * .75,
end_hr_1: lthr * .80,
end_hr_2: lthr * .90,
temp_pwr_1: ftp * .76,
temp_pwr_2: ftp * .85,
temp_lthr_1: lthr * .91,
temp_lthr_2: lthr * .95,
ss_pwr_1: ftp * .86,
ss_pwr_2: ftp * .95,
ss_lthr_1: lthr * .96,
ss_lthr_2: lthr * .99,
thresh_pwr_1: ftp * .96,
thresh_pwr_2: ftp * 1.05,
thresh_lthr_1: lthr * 1,
thresh_lthr_2: lthr * 1.02,
vo2_pwr_1: ftp * 1.06,
vo2_pwr_2: ftp * 1.20,
vo2_lthr_1: lthr * 1.03,
vo2_lthr_2: lthr * 1.06,
anaerobic_pwr_1: ftp * 1.21,
anaerobic_pwr_2: ftp * 1.50,
np_pwr_1: "over",
np_pwr_2: ftp * 1.51
});
}
}
});
我甚至可以通过乘以变量来尝试插入数据库吗? 控制台记录2变量ok,但表中没有任何内容。
答案 0 :(得分:1)
这是您问题的示例解决方案:
var ftp = (value here);
Zones.insert({
"end_pwr_1": ftp * .56,
"end_pwr_2": ftp * .75
});
对我来说它完美无缺,只要确保你已经允许插入,如果移除了不安全的包裹。显然,你可以通过乘法插入问题的答案是:"是"。