如何将datepicker日期保存为mongodb日期?

时间:2015-03-25 13:00:01

标签: mongodb meteor datepicker jquery-ui-datepicker

在流星应用程序中,我通过jquery datepicker选择一个日期,这是由 点击.tododateDue 。在我的对话框中提供所有信息后,todo的所有字段都通过点击.saveTodo

保存。

我想在输入字段中显示日期为dd.mm.yy,但我需要将其保存在mongodb集合中作为' date'。

由于我使用 todo.datedue = tmpl.find(' .tododateDue')。value; 来保存日期,我在我的收藏中获得了一个字符串。

如何将此日期保存为类型'日期'在mongodb系列中?

Template.todoDlg.events({
'click .saveTodo':function(evt,tmpl){
   console.log('tmpl',tmpl);
   var todo = {};
   todo.note = tmpl.find('.todoitem').value;
   todo.title = tmpl.find('.todotitle').value;
   todo.datedue = tmpl.find('.tododateDue').value;
   todo.project = Session.get('active_project');
   Meteor.call('addTodo',todo);
   Session.set('adding_todo',false);
 },

'click .tododateDue': function (evt, tmpl) {
    Meteor.setTimeout(function () {
        $('.tododateDue').datepicker({
            onSelect: function (dateText) {
                console.log('date',tmpl.find('.tododateDue').value);
                //Meteor.call('updateProjectDate', Session.get('active_project'), dateText);
            },
            dateFormat:'dd.mm.yy'
        });
    }, 100)
 }
})

2 个答案:

答案 0 :(得分:2)

我认为,您可以使用moment.js

 todo.datedue = moment(tmpl.find('.tododateDue').value, "dd.mm.yy").toDate();

它将返回Date-object ...

答案 1 :(得分:0)

也许autoform会帮助你。 http://autoform.meteor.com/types