4

如何强制 sammy.js 将 url 识别为与 url/Brief相同/brief

this.get('/brief', function(context) {
    console.log("BRIEF");
});

我有我的 CMS 设置来生成小写 url,但是如果用户输入一个骆驼大小写格式的 url,我会收到错误:

Tue Mar 19 2013 15:39:31 GMT+1100 (AUS Eastern Daylight Time)] body 404 Not Found get /Brief  Error {message: "404 Not Found get /Brief "} 

该页面仍然可以正常加载,但 Sammy.js 不会激活该路由的模块。

4

1 回答 1

4

您可以使用不区分大小写的正则表达式来匹配任何大小写的字母字符:

this.get(/\/brief/i, function(context) {
    console.log("BRIEF");
});
于 2013-08-02T17:30:11.393 回答