Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

layer配合vue为什么弹窗回调里面拿不到data的值

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();
                    }
                });
            }
        }
    });
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...