Skip to content
Advertisement

Sending only the updated/newly created records to API in react hooks

I’m trying to get the updated/newly created records and send it to the backend in “queryparam”

JavaScript

https://codesandbox.io/s/black-fire-ixeir?file=/src/App.js:3662-3701

In the above link,

Step1 : when I add values for inputs “123” in input1 and “345” in input2.Then when I click on “Save” the values sent are {“input1″:”123″,”input2″:”345”}. Step2: Again I try to add one row for inputs “456” in input1 and “678” in input2.Then when I click on save the values sent are {“input1″:”456″,”input2″:”678”}.

When I edit the existing row, for example the first row values and when I click on “Save” then only the first row value should be sent as the second row values hasn’t changed.Also, If I add new rows then the newly added only should be sent if the existing row values aren’t changed. Is there any way to send only the updated/newly created values to the backend using react hook

Advertisement

Answer

You could use a separate changes object to track changes by orderno property; saved during add/update/remove, and committed when submitting.

JavaScript

Edit sending-only-the-updated-newly-created-records-to-api-in-react-hooks

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement