第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

JS 變量在函數(shù)外部不可用

JS 變量在函數(shù)外部不可用

白衣非少年 2023-10-24 19:55:51
我的代碼中的變量有一個(gè)小問(wèn)題。我有一個(gè)在函數(shù)外部聲明的變量,但在它之后無(wú)法訪問(wèn)。因此,首先您輸入一個(gè)與以下代碼組合的文件:input.addEventListener("change", sefunction);現(xiàn)在這個(gè)文件(這是一個(gè) HTML 文件)應(yīng)該被解析為一個(gè)字符串:var htmlInput;var inputFile = "";function sefunction() {if (this.files && this.files[0]) {    var myFile = this.files[0];    var reader = new FileReader();    reader.addEventListener('load', function (e) {        inputFile = e.target.result;        htmlInput = new DOMParser().parseFromString(inputFile, "text/html").documentElement;        console.log(htmlInput);            //WORKING FINE        });    reader.readAsBinaryString(myFile);    document.getElementById("starten").disabled = false;    document.getElementById("myFile").disabled = true;    console.log(htmlInput);                //NOT WORKING    initialisation2();  };   };然后,為了測(cè)試它,我想 console.log htmlInput:function initialisation2() {    console.log(htmlInput);                //NOT WORKING}現(xiàn)在發(fā)生了什么:第一個(gè)console.log給了我 的內(nèi)容htmlInput。第二個(gè)和第三個(gè)(在initialisation2())中沒(méi)有。有人能告訴我為什么嗎?該變量是在第一個(gè)函數(shù)之外聲明的,因此它應(yīng)該在代碼的其余部分中可用。我需要像這樣解析 HTML 輸入文件,因?yàn)槲蚁M軌蛟L問(wèn)htmlInput.getElementsByTagName('table').
查看完整描述

1 回答

?
大話西游666

TA貢獻(xiàn)1817條經(jīng)驗(yàn) 獲得超14個(gè)贊

該htmlInput變量在第二個(gè)之后被賦值console.log并被initialisation2調(diào)用。這是因?yàn)镕ileReader是異步的,所以htmlInput直到undefined文件被讀取為止。


將調(diào)用initialisation2移至load回調(diào)中將解決此問(wèn)題:


reader.addEventListener("load", function(e) {

  inputFile = e.target.result;

  htmlInput = new DOMParser().parseFromString(inputFile, "text/html").documentElement;

  initialisation2();

});

我們可以使用模仿文件讀取器異步性的超時(shí)來(lái)復(fù)制正在發(fā)生的情況:


var htmlInput;


function sefunction() {

  setTimeout(() => {

    htmlInput = "Given htmlInput";

    initialisation2(); // logs "Given htmlInput"

  }, 1000);


  initialisation2(); // logs "undefined"

}


function initialisation2() {

  console.log(htmlInput);

}


查看完整回答
反對(duì) 回復(fù) 2023-10-24
  • 1 回答
  • 0 關(guān)注
  • 182 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)