开发者

Grails urlmapping using id and name

hey all, i have a question about urlmapping in grails. I'm trying to make seo friendly url's using a page name and id. I got the follwing in my URLMapping:

class UrlMappings {

static mappings = {
    "/$id/$name"{
        controller = "page"
        action = "view"
    }
    "500"(view:'/error')
    "/"(controller:"index")
  }
}

Witch is working, but.... the id won't clear in the urlbar, so the first time i click a link all goes well: http://localhost:8080/SuurdGasControl/2/Gasmetingen

But for the next page it shows: http://localhost:8080/SuurdGasControl/2/6/Ontgassen

note that the id "2" hasn't been removed...

Any help or thoughts?

UPDATE

URLMapping now looks like this:

class UrlMappings {

  static mappings = {
    "/$controller/开发者_运维问答$action?/$id?"{
        constraints {
                // apply constraints here
        }
    }

    name stfu: "/id/$id/$name" {
        controller = 'page'
        action = 'view'
    }

    "500"(view:'/error')
    "/"(controller:"index")

  }
}

Creating a link is as simple as:

<g:link mapping="stfu" params="[id: pageId, name: pageName]">${oNavigationInstance.toString()}</g:link>


Try to use a named URL mapping as described on http://docs.grails.org/latest/guide/theWebLayer.html#namedMappings

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜