超越琐碎
instance YesodBreadcrumbs MySite where
breadcrumb RootR = return ("home", Nothing)
breadcrumb FirstPageR = return ("first page", Just RootR)
breadcrumb SecondPageR = return ("second page", Just FirstPageR)
有谁知道如何在可以从几个不同的父母访问特定页面的情况下实现面包屑?
谢谢康斯坦丁