Grails UrlMapping - 无法为控制器设置 params.id

发布于 2024-08-29 22:27:28 字数 545 浏览 7 评论 0原文

我正在尝试创建一个 UrlMapping 将某些静态 URL 映射到控制器操作,但我似乎无法设置 params.id。我正在研究Grails in Action,所以我不确定这里出了什么问题。

代码:

class UrlMappings
...
static mappings={
    "/timeline/chuck_norris"(controller:'post',action:'timeline',id:'chuck_norris')
...
}

在PostController

def timeline{
   def user = User.findByUserId(params.id)
   [user:user]
}

错误: 没有方法签名:...findByUserId() 适用于参数类型:() 值:[]

上面的代码有什么问题?我正在使用 grails 1.2.2。

I'm trying to create a UrlMapping to map some static URL to a controller action, but I can't seem to set params.id. I'm working through Grails in Action, so I'm not sure what's wrong here.

Code:

class UrlMappings
...
static mappings={
    "/timeline/chuck_norris"(controller:'post',action:'timeline',id:'chuck_norris')
...
}

In PostController

def timeline{
   def user = User.findByUserId(params.id)
   [user:user]
}

Error:
No signature of method: ...findByUserId() is applicable for argument types: () values: []

What's wrong with the above code? I'm using grails 1.2.2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

原来分手还会想你 2024-09-05 22:27:28

您需要使用闭包:

"/timeline/chuck_norris"{
            controller = 'post'
            action = 'timeline'
           id = 'chuck_norris"
        }

或像这样:

"/timeline/$id"{
               controller = 'post'
                action = 'timeline'
}

You need to use a closure:

"/timeline/chuck_norris"{
            controller = 'post'
            action = 'timeline'
           id = 'chuck_norris"
        }

or like this :

"/timeline/$id"{
               controller = 'post'
                action = 'timeline'
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文