模板字符串(` `)


首次用於Element ui里的消息提醒里得到數據

   news() {
      this.$message({
        showClose: true,
        message: `每個商品評價成功可獲得${this.commentCredit}積分`, //模板字符串轉義獲得積分
        type: "warning"
      });
    },

  然后在網上查有很多用法,暫時不太清楚,也沒用到太多這種。待后續學習

供參考https://blog.csdn.net/zwt_guiji/article/details/81979299

用法為

// 普通字符串
`In JavaScript '\n' is a line-feed.`
 
// 多行字符串
`In JavaScript this is
not legal.`
 
// 字符串中嵌入變量
var name = "Bob", time = "today";
`Hello ${name}, how are you ${time}?`   // Hello Bob, how are you today?

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM