我想使用明确类型的 sammyjs 文件和 typescript 在我的页面上声明一个路由
声明的 Javascript 看起来像这样 -->
Sammy(function () {
this.get('#:foobar', function () {
//doStuff
var baz = this.params.foobar;
});
this.get('', function () { this.app.runRoute('get', '#All') });
}).run();
到目前为止,我有这个。
var app: Sammy.Application = Sammy();
app.get('#:foobar', () => {
//doStuff
var baz = this.params.foobar;
});
显然 params 不在“this”的上下文中,所以我更详细的问题是..这是定义 sammy 路线的正确方法吗?如果是,那么我如何访问婴儿车。