Deep-linking with Sammy.js?

2019-08-13 00:59发布

I recently built a website using the sammy.js framework. The site includes a portfolio page with a grid of thumbnails that link to the detail page for each portfolio piece. All of this works.

What I cannot seem to figure out how to do is be able to provide someone a link to a specific project on the site (ex: www.thesite.com/#/work-detail/some-project) and have it run the work-detail route with "some-project" as the variable that gets passed for it to load the correct content.

Any help would be appreciated.

1条回答
我想做一个坏孩纸
2楼-- · 2019-08-13 01:23

So, this doesn't work?

get('#/work-detail/:project', function() {
        alert(this.params['project']);
});
查看更多
登录 后发表回答