1

使用以下方法设置 staticMatic 项目/index.html

@slug = current_page.gsub(/\.html/, '')

返回"/index(.html)",但应该是/index


更改术语更正: -@slug = current_page.gsub("/", "").gsub(".html", "")如发现:

https://github.com/adamstac/staticmatic-bootstrap/blob/master/src/helpers/application_helper.rb

4

1 回答 1

1

要在剥离 html 后删除开头的“/”,只需执行以下命令(这将在一个命令中完成):

current_page.gsub(/\.html/, '').gsub(/\//,''))
于 2010-08-08T22:13:58.190 回答