All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scalatra.queryParamOperation.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
    {{#collectionFormat}}val {{paramName}}String = params.getAs[String]("{{paramName}}")
    val {{paramName}} = if("{{collectionFormat}}" == "default" || "{{collectionFormat}}" == "csv") {
      {{paramName}}String match {
        case Some(str) => str.split(",").toSeq
        case None => Seq()
      }
    } else
      Seq()
    {{/collectionFormat}}
    {{^collectionFormat}}
    val {{paramName}} = params.getAs[{{dataType}}]("{{paramName}}")
    {{/collectionFormat}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy