Closed 1beb closed 7 years ago
This problem appears to be related to the ids, or more specifically the field name of the id (in this case _id). In general, it seems to work if we do not use a mongoose.
is there any errors on browser console or on feathers debug?
check here:
https://github.com/feathersjs/feathers-mongoose/issues/81 https://github.com/feathersjs/feathers-mongoose/issues/156
@fonzarely Is working to support custom id (maybe you want to help) https://github.com/josx/aor-feathers-client/pull/21
I am experiencing this issue as well. Any workarounds?
It seems to be that you are using mongo or somehting with custom id field name. We are working to support that! @thngdude if you can please help us! here WIP https://github.com/josx/aor-feathers-client/pull/21 (need tests, and @1beb told us that it is not working )
I have a feathers service that I can test with postman, and it shows a list of 4 records all distinct. However, when I try to use it with aor-feathers-client, no matter which model I use, the records are all being presented as equal. So let's say for example, we have a model for
reminders
. We would expect:Reminders List
But what is appearing is:
Reminder List
Where the first item is always duplicated. Also, when trying to edit, it simply passes 'undefined'. I'm not sure what I'm doing wrong here. I based it entirely off of your example: