I send my data with this javascript

$.ajax({
      url: url,
      dataType: 'json',
      type: 'POST',
      contentType: 'application/json',
      success: function (data) {
          location.replace("{{=URL('coperativa','verbale')}}?index=true");
      },error: function (error) {
         alert("Si รจ verificato un errore durante il salvataggio");
       },
       data: { "order_of_day": order_of_day, "body": body,"date_start": 
date_start,"date_end":date_end,"utenti":array_utenti_checked} ,
     });

On Tuesday, 13 June 2017 17:40:39 UTC+2, Alessio Varalta wrote:
>
>
> Hi, I send to my controller this json 
>
> {
> "order_of_day": "ffd",
> "body": "dd",
> "date_start": "2017-06-28 17:11:38",
> "date_end": "2017-06-23 17:11:40",
> "utenti": []
> }
>
> and I make 
>
>         myJson=gluon.contrib.simplejson.loads(request.body.read())
> but I have an error <class 
> 'gluon.contrib.simplejson.decoder.JSONDecodeError'>(No JSON object could be 
> decoded: line 1 column 0 (char 0))
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to