Hi,
I'm writing a python wrapper for smartclient.
I updated to last version library today and i testing the various functionality before to release on github.
I founded this problem:
in previous version python reply to restdatasource with something like this, when rest fetch all data automaticallly:
With latest version the python reply with same string, but i get:
The server failed to return a formatted response at all.
I'm writing a python wrapper for smartclient.
I updated to last version library today and i testing the various functionality before to release on github.
I founded this problem:
in previous version python reply to restdatasource with something like this, when rest fetch all data automaticallly:
Code:
{"response":{"msg":"no message",
"data":[{"id":1,
"name":"Name1",
"surname":"surname1",
"sex":"M",
"dateofbirth":"dd/mm/yyyy"},
{"id":2,
"name":"Name2",
"surname":"surname2",
"sex":"F",
"dateofbirth":"dd/mm/yyyy"}
],
"status":"0",
"js":"window.alert(dataJ.msg); "}}
With latest version the python reply with same string, but i get:
The server failed to return a formatted response at all.
Comment