javascript - Why is this Vue prop not reacting to change? - Stack Overflow

I have a Prop in my ponent that is a User object, I then have this function:onChange: function(event){t

I have a Prop in my ponent that is a User object, I then have this function:

    onChange: function(event){
        this.$v.$touch();
        if (!this.$v.$invalid) {
            this.$axios.put('update',{
                code:this.user.code,
                col:event.target.name,
                val:event.target.value  
            }).then(response => {
                this.user[event.target.name]=event.target.value
            });
        }
    }

I can see in the Vue console debugger that the correct attribute has been updated, this attribute exists when the ponent is created but the template where I reference it does not refresh:

<p>Hi {{user.nickname}}, you can edit your details here:</p>

This is all within the same ponent so I'm not navigating to child or parent. I'm sure props have been reactive elsewhere in my code?

I have a Prop in my ponent that is a User object, I then have this function:

    onChange: function(event){
        this.$v.$touch();
        if (!this.$v.$invalid) {
            this.$axios.put('update',{
                code:this.user.code,
                col:event.target.name,
                val:event.target.value  
            }).then(response => {
                this.user[event.target.name]=event.target.value
            });
        }
    }

I can see in the Vue console debugger that the correct attribute has been updated, this attribute exists when the ponent is created but the template where I reference it does not refresh:

<p>Hi {{user.nickname}}, you can edit your details here:</p>

This is all within the same ponent so I'm not navigating to child or parent. I'm sure props have been reactive elsewhere in my code?

Share Improve this question asked Mar 26, 2019 at 15:34 AntGAntG 1,2942 gold badges20 silver badges31 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

Ok, it seems this is intended behaviour. According to the documentation https://v2.vuejs/v2/guide/ponents-props.html in the scenario that I have it should be handled as:

  1. The prop is used to pass in an initial value; the child ponent wants to use it as a local data property afterwards. In this case, it’s best to define a local data property that uses the prop as its initial value:

     props: ['initialCounter'],
     data: function () {
       return {
         counter: this.initialCounter
       }
     }
    

Usually, ponents should be reactive to Props, though I have had experiences where it was non-reactive, so I added the prop to a watcher and put the functional call there.

props: ["myProp"],
watch:{
  myProp(){
     // ... your functions here
  }
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743697987a4492081.html

相关推荐

  • javascript - Why is this Vue prop not reacting to change? - Stack Overflow

    I have a Prop in my ponent that is a User object, I then have this function:onChange: function(event){t

    16小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信