希望有人可以告诉我这个更新方法我的错误在哪里:
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
if (MessageBox.Show("Are you sure you want to exit ?",
"Are you sure you want to exit ?",
MessageBoxButtons.YesNo,
MessageBoxIcon.Information) == DialogResult.No)
{
e.Cancel = true; // cancels the close action
}
else
Application.Exit(); // closes the app, this might not be necessary. Just proceeding with the form close is enough UNLESS this is not the main application form
}
以下是活动:
changeTaskDetails: function(singleID,detailsTarget){
TaskDetails.update({
_id: singleID,
}, {
$set:{
projectType: detailsTarget,
}
});
console.log(singleID);
},
我可以获得2个道具来记录......但它没有更新数据库。两个控制台都没有错误。
答案 0 :(得分:0)
我明白了!我有一个会话变量控制何时可以(或不能)查看更新表单。出于这个或那个原因,这个形式在这个区域内部被剔除了。当我删除会话,并将表单添加到主模板...它工作!