Frage

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?

War es hilfreich?

Lösung

Good question.

And there is a good answer :)

Use response.body setter:

def logs
  # logic here
  response.body = [1, 2, 3]
end
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top