What can I do without express, so that the returned data is not displayed directly on the page?

I write this

res.writeHead(200, {"Content-Type": "application/json"});
 res.end(JSON.stringify(body));

data is displayed directly on the page

clipboard.png

 
Mar.15,2021

try to receive it with html's ajax. Url accesses the html address instead of the interface address

Menu