string 字符串

format

字符串格式化。

  1. format('this is ${name}', { name: 'asdf' })
  2. // output: this is asdf
  3. format('this is ${user.name}', { user: { name: 'asdf' } }, true)
  4. // output: this is asdf

参数

  • str: string 模板

  • obj: {} 数据对象

  • needDeepGet = false 是否需要深度获取,支持 ${user.address.city} 写法。