最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to filter out getters and setters when console logging Vuejs data? - Stack Overflow

programmeradmin0浏览0评论

I am writing a vue js app.

When I console log the data from the vue instance I see it with it's getters and setters which are not relevant to me.

var vm = new vue({

  data () { return { testData: { stuff: 'some stuff' } }; },

  methods: {
    log () {
      console.log( this.testData );
    }
  }
})

You can see the above example here.

This is what I get in the console (very dirty):

I can remove the setters before logging but that seems to be overkill for a simple log.

Vue used to have a built in $log method for this purpose, but it has been removed in v2.

Does anyone have any idea how to filter the data from the getters/setters before logging?

I am writing a vue js app.

When I console log the data from the vue instance I see it with it's getters and setters which are not relevant to me.

var vm = new vue({

  data () { return { testData: { stuff: 'some stuff' } }; },

  methods: {
    log () {
      console.log( this.testData );
    }
  }
})

You can see the above example here.

This is what I get in the console (very dirty):

I can remove the setters before logging but that seems to be overkill for a simple log.

Vue used to have a built in $log method for this purpose, but it has been removed in v2.

Does anyone have any idea how to filter the data from the getters/setters before logging?

Share Improve this question edited May 23, 2017 at 12:18 CommunityBot 11 silver badge asked Nov 30, 2016 at 8:31 hitautodestructhitautodestruct 20.9k14 gold badges75 silver badges95 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

One of the following should do the trick: 

log: function(d) {
    console.log(Object.assign({}, this.form));
}

// if you have jQuery
log: function(d) {
    console.log($.extend({}, this.form));
}

// what $log does
log: function(d) {
    console.log(JSON.parse(JSON.stringify(this.form))); 
}

// ES6 Destructuring
log: d => ({ ...d })

You may do that:

console.log(JSON.parse(JSON.stringify(this.testData)));

new Vue({
   el:"#app",
	data:{
	testData: { 
           stuff: 'some stuff',
           something: 'some thing'
	}
	},
	methods:{
	log(){	    
           console.log(JSON.parse(JSON.stringify(this.testData)));
	}
	}
	})
<script src="https://unpkg./vue/dist/vue.js"></script>

<div id="app">
    <button v-on:click="log">log</button>
</div>

发布评论

评论列表(0)

  1. 暂无评论