Flavio.Expanding on Andrew's answer, the JSON module is used, this is what you can find in its documentation:Ciao,
[...] references to the integers0and1, which get turned intofalseandtrueatoms in JSON. You can also useJSON::falseandJSON::trueto improve readability.
2015-01-26 12:22 GMT+01:00 Hugues <hugues@max4mail.com>:
Hello
use dancer 1.3132
I need to retun a json to my AngulasJS app come from my MySQL database
but my json return "false" instead of false and "true" instead of true
or 0/1 instead of true/false
my @todo = database()->quick_select('ToDo',{ userId => $userId },{limit => 50} );
return \@todo;
I try binay fields, varchar fields, bool fields ( return 0/1), tinyint( 0/1)
do you have a idea ? or I need to parse @todo and change by myself ?
[
{
"Completed" : "false",
"Id" : "11",
"UserId" : "1",
"Tache" : "my 1st task"
},
{
"Completed" : "true",
"Id" : "12",
"UserId" : "1",
"Tache" : "aller chercher le chien"
},
]
_______________________________________________
dancer-users mailing list
dancer-users@dancer.pm
http://lists.preshweb.co.uk/mailman/listinfo/dancer-users
_______________________________________________ dancer-users mailing list dancer-users@dancer.pm http://lists.preshweb.co.uk/mailman/listinfo/dancer-users