Hello,
I have a REST proxy and I want to save newly added data.
Store sends POST request, but it sends "id" (primary key) variable too.
Is this a way to remove "id" variable ( {id: 0, ...} ) from the POST request?
Thanks
Printable View
Hello,
I have a REST proxy and I want to save newly added data.
Store sends POST request, but it sends "id" (primary key) variable too.
Is this a way to remove "id" variable ( {id: 0, ...} ) from the POST request?
Thanks
Have a look at: appendId: false in your proxy.
Regards,
Scott
Thank you, Scott.