[Vuejs]-Vue won't read JSON response?

2👍

you are overwriting the array with an object:

methods: {
      loadData () {
        $.get('/scheduled_jobs/list', function (response) {
          this.jobs.push(response.json());
        }.bind(this))
      }
👤li x

1👍

You’re getting an object, not an array, so jobs.length is undefined.

👤Roy J

Leave a comment