Estrarre l’oggetto json dalla risposta

Quando invii un modulo adattivo headless a un gestore di invio personalizzato, i dati restituiti dal gestore di invio possono essere estratti e visualizzati nell’app di reazione. Il seguente frammento di codice mostra

// associate event handler for the onSubmitSuccess event
<AdaptiveForm mappings={extendMappings} onSubmitSuccess={onSuccess} formJson={selectedForm}/>
// extract the json returned by the custom submit service
const onSuccess=(action) =>{
        let body = action.payload?.body;
        let FirstName = JSON.parse(body.metadata.json).firstName;
        setThankYouMessage(FirstName+" your request has been received");

      }
recommendation-more-help
4859a77c-7971-4ac9-8f5c-4260823c6f69