Home > utils > StringTemplate
字符串模板。
Signature:
export declare class StringTemplate
Method | Modifiers | Description |
---|---|---|
render(template, data, options) | static |
<p>渲染字符串模板。语法:</p><p>- 用 {key} 直接替换; - 用 {key:param1,param2} 执行函数替换; - 用 执行代码替换(内部使用 eval 实现,需开启选项里的 code 参数)。</p> |