gpt4 book ai didi

grails - Grails打开空白页没有错误

转载 作者:行者123 更新时间:2023-12-02 14:12:33 24 4
gpt4 key购买 nike

我问这样一个琐碎的问题很尴尬,但是我已经用尽了所有选择,而Google并没有帮助我。我有以下网址映射代码:

static mappings = {
"/$controller/$action?/$id?"{
constraints {
}
}
"/"(controller:'news', action:'index')
"500"(view:'/error')
}

和 Controller 类:
def index() {
redirect(action: 'result')
}
private doRender(Map params = [:].withDefault { [:] }) {
def viewPath = "/mobile/news/front/front"

def completeModel = getDefaultModel() + params.model

render(view: viewPath,
model: completeModel)
}

GSP页面存在并且位于以下路径上: views/mobile/news/front/front.gsp运行该应用程序后,我尝试打开以下URL: http://localhost:8080/,并且我得到的是空白页,没有任何错误。我不知道这是什么,而完全缺乏反馈正在杀死我。
我可以检查任何地方的日志吗?而且,有什么明显的我想念的东西吗?

谢谢亚历克斯

最佳答案

当您在计算机上以运行应用程序模式运行Grails时,页面http://localhost:8080/在Firefox中始终为空。它与url映射等无关。

关于grails - Grails打开空白页没有错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15210079/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com