master
宇天 2020-09-19 17:35:31 +08:00
parent ee306f7ef4
commit 6fc44d961e
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
> **注:** > **注:**
> >
> 1. `默认使用.tpl后缀的模板文件, 在引用模板文件时该后缀可以省略不写。` > 1. `默认使用.htm后缀的模板文件, 在引用模板文件时该后缀可以省略不写。`
> 2. `模板的路径/文件名, 可以不写引号(推荐)` > 2. `模板的路径/文件名, 可以不写引号(推荐)`
## API ## API

View File

@ -16,7 +16,7 @@ function hash(str) {
class Smarty { class Smarty {
constructor(opt) { constructor(opt) {
this.opt = { cache: true, ext: '.tpl' } this.opt = { cache: true, ext: '.htm' }
if (opt) { if (opt) {
Object.assign(this.opt, opt) Object.assign(this.opt, opt)
} }