How to convert html to json in flutter?

834 Views Asked by At

My api getting 200 status code and also get html response. so how to convert html data into json data in dart?

1

There are 1 best solutions below

0
On

If you're trying to send data from the page you can extract data from the DOM like so...

<input id="superId">information</input>
<input id="otherId">information</input>  

<script>
   let myJson = {
      'super': document.getElementById('#superId').value,
      'other': document.getElementById('#otherId').value
   }

   // Call server with myJson as data attribute to post data

</script>

If you are trying to receive data you may need to process the response with json.parse(response) before you can access the object like response.data hope this helps