I have a model

class Unit(models.Model):
    date = models.DateTimeField()
    name = models.CharField(max_length = 128)

Then I have a view with js jquery ui datepicker. Then I have an ajax post function with

data_send['date'] = $('#date').value;
data_send['name'] = $('#name').value;
$.post("/url_1/",data_send, function(data_recieve){
    alert(data_recieve);
});

Then in a view I'm trying to save unit like

def url_1(request):
    unit = Unit.objects.get(pk = 1)
    unit.date = request.POST['date']
    unit.name = request.POST['name']
    unit.save()
    return HttpResponse('ok')

Unit.name changes, but not unit.date. I use django 1.3. I have no csrf protection. I recieve 'ok' from server. Why does the unit.date not save?

Thanks

link|improve this question
what value does request.POST['date'] have in your view? I'd imagine it is your datepicker format, for django i think the datetime field format is YYYY-mm-dd HH:MM:SS i think the default datepicker is dd-mm-yy – dm03514 Jan 23 at 20:17
Oh yes. So the datepicker format is dd-mm-yyyy. Ok, maybe there is a standart js serializer or maybe django objects have something like encoding. m? – Павел Тявин Jan 23 at 20:21
feedback

1 Answer

up vote 1 down vote accepted

Since django datetime field is a representation of a datetime.datetime python instance, I like to make sure that I have a valid instance before inserting into the database.

you can use the datetime module to achieve this, instead of saving unit.date as a string

from datetime import datetime

try:
  valid_datetime = datetime.strptime(request.POST['date'], '%d-%m-%Y')
except ValueError:
  # handle this

then you can save the valid_datetime as your unit.date

the second param of strptime is formatted using the below values, it should match your datepicker format http://docs.python.org/library/datetime.html#strftime-strptime-behavior

link|improve this answer
Error: time data '%d.%m.%Y' does not match format '24.01.2012'. Should I escape dots like '%d\.%m\.%Y'? – Павел Тявин Jan 23 at 20:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.