我如何重新定向到另一条路径

how do I readirect t another path

我有这段代码,我想在 id == 1 时转发到另一条路径

get("/courses/{id}"){
    val id = call.parameters["id"]?.toInt()
    if (id is Int) {
        if (id == 1)
        // i want redirection to "/courses/top"
    }
}

你可以直接使用 call.respondRedirect:

if (call.parameters["id"]?.toIntOrNull() == 1) {
    call.respondRedirect("/courses/top")
}