HTTP req response throws net::ERR_CONNECTION_CLOSED

Author: harishankardsCreated Apr 17, 2018Updated Dec 2, 2021

Hi, I'm using Vue-resource for making an HTTP get request. Below is my code:

    mounted () {
      this.$http.get('https://localhost:3000/students', { headers: { 'content-type': 'application/json' } })
      .then(function (data) {
        console.log('data', data)
      })
      .catch(function (err) {
        console.log('err', err)
      })
    }

I checked with postman, it gives the right response. But in browser, I get the below error response: image