getJsonValuesFromTable
methode retourneert niets (Unit
). Om het te repareren, verander de definitie van deze methode in
def getJsonValuesFromTable(testContent: TestContent) = {
of expliciet type instellen:
def getJsonValuesFromTable(testContent: TestContent): Unit = {
Als volgende stap om de klant te laten weten dat u json retourneert, moet u ook het inhoudstype instellen:
Ok(Json.obj(response)).as("application/json")