鍍金池/ 問答/ HTML問答
毀與悔 回答

setter 內(nèi)部是可以異步的,但是既然是異步的,恐怕就不能在設(shè)置值之后馬上就能取得出來,如果用 setTimeout 來模擬異步調(diào)用,

const target = {
    data: "init",

    get test() {
        return this.data;
    },

    set test(data) {
        setTimeout(() => this.data = data, 1000);
    }
};

console.log("first", target.test);
target.test = "hello";
console.log("second", target.test);
setTimeout(() => console.log("third", target.test), 1000);

輸出結(jié)果是

first init
second init
third hello

說明 setter 是起作用了的,但是要等待異步調(diào)用結(jié)速,具體時(shí)間并不能確定。如果想確定,可以使用 Callback 或者 Promise,而且不是用 setter,而是用 set 函數(shù),比如(使用 async 語法)

const target = {
    // ....

    async setTest(data) {
        return new Promise(resolve => {
            setTimeout(() => {
                this.data = data;
                resolve();
            }, 1000);
        });
    }
};

(async () => {
    await target.setTest("hi");
    console.log(console.log(target.test));
})();

這里的輸出就已經(jīng)等待到異步過程結(jié)束了

蝶戀花 回答

這個(gè)需要插件嗎?簡單來說,就是一個(gè)textarea而已,設(shè)計(jì)一下界面就好了,沒有什么必要用插件。

絯孑氣 回答

一定是異步的。
想要同步執(zhí)行:

setState({/*..*/}, () => {/* then do something */})
萌面人 回答

最基本的:emit up; prop down!

使用了vux就相當(dāng)于是React的Redux里的store,存在應(yīng)用頂層??梢员幌旅嫒魏谓M件接收。

心沉 回答

不用加 this. 直接取 active

默念 回答

發(fā)現(xiàn)問題好像是echart的原因,當(dāng)換了一個(gè)示例時(shí)可以正常顯示顏色了

幼梔 回答

Local Storage
Session Storage
IndexedDB
Web SQL
Cookies

就這幾種持久化方案,你必須用一種

心夠野 回答

你直接讓ui幫你切就完事了唄

陌顏 回答

按照nginx官網(wǎng)的說明,server_name中的多個(gè)域名應(yīng)該以空格分隔,而不應(yīng)該以逗號(hào)分隔。

硬扛 回答

你肯定是代碼有問題,按下標(biāo)刪除不會(huì)錯(cuò)的。

arr.splice(index, 1)

我覺得有可能是你獲取下標(biāo)的代碼有問題,把代碼貼出來看看吧

柒喵 回答

這么說吧,瀏覽器是不能直接操作文件的,要不然網(wǎng)頁就等于病毒了。

玄鳥 回答
<Route from="/old-match/:id" component={({ match }) => (
  <Redirect to={`/will-match/${match.params.id}`}/>
)}/>

類似于這樣。

焚音 回答

補(bǔ)充加回答:在獲取接口數(shù)據(jù)的時(shí)候就要把日期類型改成date格式,不改的話獲取的是string類型,就會(huì)出現(xiàn)上述問題:value.getTime() is not a function.

        this.axios.get('/operation/v1/activity/no/' + this.$route.params.activityNo)
          .then(response => {
            let details = response.data.data;
            details.ifShowName = details.ifShowName === 1;
            details.ifShowPhone = details.ifShowPhone === 1;
            details.ifShowWechat = details.ifShowWechat === 1;
            details.ifShowEmail = details.ifShowEmail === 1;
            details.beginAt = new Date((details.beginAt + '.000Z').replace(' ', 'T'));
            details.endAt = new Date((details.endAt + '.000Z').replace(' ', 'T'));
            this.activityDetails = details;
          })
懶豬 回答

beforeRouteEnter 有3個(gè)參數(shù) 有 from to next 你跳到C的時(shí)候傳個(gè)參數(shù)區(qū)分AB 能取得到的