安卓设备上的Ktor服务器," static "的路径在哪里,想要显示索引.html



在这里输入图像描述Ktor可以在Android上运行HTTP和可以提供静态内容(?),如index.html。index.html在Android上的Ktor工作吗?如果是,我应该在我的项目中使用哪个包?">

但是我无法在浏览器中找到静态网页

根据您的文件结构,下面的配置应该为您工作:

static("/test") {
resources()
defaultResource("index.html")
}

例如,服务器将用app/src/main/resources/index.html文件的内容响应GET /test请求,用app/src/main/resources/image/image.png文件的内容响应GET /test/image/image.png请求。

相关内容

  • 没有找到相关文章

最新更新