2021年3月11日木曜日

async function

async function get() {
    let res = await fetch(location.href);
    console.log(res.headers.redirected);
    res.headers.forEach(function (a, b) {
        console.log(a + "---" + b);
    })
    console.log(await res.text());
}
get();

2021年3月3日水曜日

A68N-2100K BIOSマルチモニター設定項目

 A68N-2100K BIOSマルチモニター設定項目

Chipset → GFX Configuration → Integrated Graphics

 「Auto」から「Force」に変更






end


2021年3月2日火曜日

async,await,Promise


function llnu() {
    return new Promise(function (t1, t2) {
        setTimeout(function () {
            t1(JSON.stringify({ 1: 1, 2: 2, 3: 3, 4: 4, 5: 5 }));
        }, 2000);
    });
}

async function xxx() {
    cb(await llnu());
}

function cb(e) {
    console.log(e)
}