0


我有一个url ,我想使用Ktor框架显示为我的网页内容。

fun Application.module() {
    install(DefaultHeaders)
    install(CallLogging)
    install(Routing) {

        get("/") {
            call.respondText(/*Content of that url in the output ?*/, ContentType.Text.Any)
        }
    }
}

提前致谢。

4

1 回答 1

1

这看起来像是一种代理。您可以在此处查看反向代理示例:https ://github.com/ktorio/ktor-samples/tree/master/other/reverse-proxy

于 2018-11-14T14:07:55.887 回答