Hi, i try to make my own implementation of an Adapter with socket.io. All work fine, except that the serializer tells me it’s can’t convert Undefined to Object. I think my json return is mal-formed.
My server returns this json when i try to get a list of foo objects :
javascript
{
“foo”: [{
“id”: 1,
“rev”: 0,
“title”: “some title”,
“Description”: “some description”
},{
“id”: 2,
“rev”: 0,
“title”: “another title”,
“Description”: “another description”
}]
}
Any idea? thanks in advance