Home > Software design >  What is HTML formatted data
What is HTML formatted data

Time:03-29

I have a project i’m working on and i’m allowed to use React and express. But rules are not to use any Html formatted data being exchanged between client and server. What is exactly meant by no Html formatted data. FYI, i plan on using json data to be sent between client and server.

CodePudding user response:

HTML formatted data is a data that you get from HTML, for example: input type, hidden value, etc which you can retrieve using HTTP/REST method such as GET, POST on it's back end. JSON is not HTML formatted data, CMIIW.

  • Related