把手部分在Sammy.js

时间:2012-08-16 23:38:29

标签: javascript html templates handlebars.js sammy.js

我一直在搜索sammy.js和把手的文档很长一段时间,我不能为我的生活,确定http://sammyjs.org/docs/api/0.7.1/all#Sammy.Handlebars(示例#2)mypartial.hb的指示位置加载到{{> hello_friend}}。想法?

1 个答案:

答案 0 :(得分:0)

我这个问题已经陈旧,但是对于所有sammyjs爱好者来说

var app = $.sammy('#app', function(){

    this.use('Mustache', 'ms');

    this.get('#/hello/:name/to/:friend', function(context){
        this.load('mypartial.ms')
        .then(function(partial){
            context.partials = {hello_friend: partial};
            context.name = context.params.name;
            context.friend = context.params.friend;

            context.partial('mytemplate.ms');
        });
    });
});

http://sammyjs.org/docs/api/0.7.4/all#Sammy.Handlebars 请注意版本是0.7.4