Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

subContactUs: function getHomeData() {
    $.ajax({
        type: "get",
        data: {
            content: this.contactFrom.content,//这边没问题,可以拿到
            name: this.contactFrom.name,
            address: this.contactFrom.address
        },
        url: API.index.contactUs,
        dataType: "json",
        success: function success(res) {
            if (res.status == 1) {
                console.log(res);
                layer.open({
                    ... 
                    yes: function() {
                        this.contactFrom.name = '' //这边回调报nameundefind,这是为什么
                        layer.closeAll();
                    }
                });
            }
        }
    });
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

this的指向问题,用箭头函数,或者在最外层that = this,yes回调中使用that.contactFrom.name


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...