export function upperCase(product) {
try {
if (product) {
return product.toString().toUpperCase() // toUpperCase()是字符串的方法,数字或null等用这个方法会报错,所有先转成字符串
}
return '--'
} catch (e) {
console.log(e)
return product
}
}
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
网友评论