如何使这个 js 不是 dinamic [已关闭]

how to make this js not dinamic [closed]

提问人:human 提问时间:11/17/2023 最后编辑:Nickhuman 更新时间:11/17/2023 访问量:9

问:


想改进这个问题吗?通过编辑这篇文章添加详细信息并澄清问题。

昨天关闭。

$.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)
        })
JavaScript JSON

评论

0赞 vsam 11/17/2023
您能否提供更多详细信息或更详细地描述您的问题?

答: 暂无答案