How to convert an array to form list form

for example, id =
how to convert ajax submission to form list submission, that is, this form

clipboard.png

Note: do not want to submit with form form

Mar.21,2021

want to convert to this?

let result = [{id: '1'}, {id: '1'}, {id: '3'}];
let ids = ['1', '2', '3'];
let result = ids.map(el => {
    return {
        id: el
    };
});
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-1b3e7e4-409a5.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-1b3e7e4-409a5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?