2024-07-02 16:03:24 +07:00
|
|
|
import * as cherrio from 'cheerio'
|
|
|
|
|
|
2024-07-06 18:29:38 +07:00
|
|
|
const getResource = (key: any, data: any) => {
|
|
|
|
|
const $ = cherrio.load(`<div class="">${data}</div>`)
|
|
|
|
|
let result = null;
|
|
|
|
|
switch (key) {
|
|
|
|
|
case 'HIGHLIGHT_VIDEO':
|
|
|
|
|
result = $('video').first().parent().html();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
result = $.html();
|
|
|
|
|
}
|
|
|
|
|
console.log(result)
|
|
|
|
|
return result;
|
2024-07-02 16:03:24 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
getResource
|
2024-07-06 18:29:38 +07:00
|
|
|
}
|