The object is sent from the backend. How should the front-end js accept further processing?

< H2 > for example, if I send a video result in here, I want to call the backend interface through the ajax method again to generate its thumbnail. How can I pass video as a parameter to the pug template used by ajax,? thank you < / H2 >
Mar.12,2021
The rule of

ajax seems to be that you can only transfer json data. In the past, there were xml, but now they all use json. Take a look at how to convert video to json object first, and then use ajax to transfer


//node
 res.json(video);
//ajax
 $.post('/api',{},function(video){
     console.log(video);
  });
.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b32dc4-341f9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b32dc4-341f9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?