私はtemplate.find
自分の生活を楽にするために使用しようとしています。
しかし、javascriptコンソールでは次のようになります。undefined is not a function
これが私が持っているものです。つまずきますtemplate.find(...)
Template.superuserHUD.events =
{
'click input.new_device': function (template) {
var id = template.find(".new_device_id").value;
Device_IPs.insert({ID: id, IP: "Not Connected"});
}
}
何か案は?