JS使用占位符替换字符串
JS使用占位符替换字符串是一个ES6中的模版字符串语法。在 {% raw %}
{% endraw %}
中使用 ${}
var a = 5
var b = 10
console.log(`Fifteen is ${a + b} and not ${2 * a + b}.`)
Fifteen is 15 and not 20.
// 查询用户订单列表
order_list (pageIndex, pageSize, params) {
return Vue.http.get(`api/order/order_list/${pageIndex}/${pageSize}`, params)
}
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/02/25/js-replace-strings-with-placeholders/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
JS使用占位符替换字符串
JS使用占位符替换字符串是一个ES6中的模版字符串语法。在 {% raw %}{% endraw %} 中使用 ${}
var a = 5
var b = 10
console.log(`Fifteen is ${a + b} and no……
文章目录
关闭
共有 0 条评论