将字符串中的占位符替换为对应的值
原始字符串
参数对象,包含占位符的键值对。
Optional
对象不存在键值时的占位符,默认不变。
loadStr('hello ${test}', { test: 123 }); // 'hello 123'loadStr('hello ${test}', undefined); // 'hello ${test}'loadStr('hello ${test}', undefined, '$'); // 'hello $'loadStr('hello ${name.first}-${name.last} ${ test }', { name: { first: 'A', last: 'B' }, test: '!' }); // 'hello A-B !' Copy
loadStr('hello ${test}', { test: 123 }); // 'hello 123'loadStr('hello ${test}', undefined); // 'hello ${test}'loadStr('hello ${test}', undefined, '$'); // 'hello $'loadStr('hello ${name.first}-${name.last} ${ test }', { name: { first: 'A', last: 'B' }, test: '!' }); // 'hello A-B !'
将字符串中的占位符替换为对应的值