Domanda

I need an action to return an Array(it will be later processed by a middleware).

However, this always convert returned value to string:

def logs
  # logic here
  [1, 2, 3]
end

How to tell Espresso to return it as is?

È stato utile?

Soluzione

Good question.

And there is a good answer :)

Use response.body setter:

def logs
  # logic here
  response.body = [1, 2, 3]
end
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top