NodeJS - не может достичь свойств этого в методах прототипа функции конструктора

Я описываю свойства в функции конструктора, но когда я вызывал метод Server.request в index.js, он не показывал свойства в

console.log(this)

выводит {} (пустой объект)

Конструктор

function Server(){
  if(!(this instanceof Server)) return new Server()

  this.actions = { // accepted actions
    login: {
      post: [['email', 'username'], 'password']
    },
    register: {
      post: 'name,surname,password,email,haveLicence,licenceKey'.split(',')
    }
  }
}

Функция запроса

Server.prototype.request = (req /* express request object */)=>{
  console.log(this) // {}
  return new Promise((r,j)=>{
    let action = (req.url.match(/[a-z\-]+/i) || [])[0]

    if(!action) return r([400, 'NoAction']);

    action = this.actions[action] // Cannot read property 'register' of undefined.
...
}

Ответ 1

Это характер функций стрелок es6. Они связывают this по-разному.

Try:

Server.prototype.request = function(req) {
    console.log(this) // 
    // etc.
}

Упрощенный пример:

function Server() {
  this.string = "hello"
}

Server.prototype.request = function(req) {
  return this.string
}
Server.prototype.request_arrow = (req) => {
  return this.string
}
var s = new Server()

console.log(s.request())
console.log(s.request_arrow())