美文网首页
vue 显示的数据转为大写过滤器

vue 显示的数据转为大写过滤器

作者: w_小伍 | 来源:发表于2020-11-25 15:11 被阅读0次
    export function upperCase(product) {
      try {
        if (product) {
          return product.toString().toUpperCase() // toUpperCase()是字符串的方法,数字或null等用这个方法会报错,所有先转成字符串
        }
        return '--'
      } catch (e) {
        console.log(e)
        return product
      }
    }
    

    相关文章

      网友评论

          本文标题:vue 显示的数据转为大写过滤器

          本文链接:https://www.haomeiwen.com/subject/hxjniktx.html