提问人:human 提问时间:11/17/2023 最后编辑:Nickhuman 更新时间:11/17/2023 访问量:9
如何使这个 js 不是 dinamic [已关闭]
how to make this js not dinamic [closed]
问:
$.getJSON('<?php echo site_url('FinishGood/VisualStock/getHumidityNew') ?>', function(result) {
let equipIds = result.data.map((item) => item.equip_name);
// console.log(equipIds);
let equipIdHeader = '';
equipIds.forEach((item) => {
equipIdHeader += `<th style='background-color:#526571;font-size:20px;color:#ced4da;text-align:center;width:15%'>${item}</th>`;
});
let table = `<table class='table' width='100%' style='background-color:#2e353e;margin-bottom:0;'>
<thead>
<tr>
${equipIdHeader}
</tr>
</thead>
<tbody>
<tr>
${result.data.map(item => `<td class='text-center' style='font-weight:bold;color:#ffb23a;font-size : 24px;border: 1px solid #00000017;'>${item.TEMP}</td>`).join('')}
</tr>
<tr>
${result.data.map(item => `<td class='text-center' style='font-weight:bold;${item.HUMD > 70 ? 'color:red' : 'color:#ffb23a'};font-size : 24px;border: 1px solid #00000017;'>${item.HUMD}</td>`).join('')}
</tr>
</tbody>
</table>`;
$('#dataHumidity').html(table)
})
答: 暂无答案
评论