1.获取{}里面的数据
方法1
var ss='1T1变压器屋顶水箱间、卷帘{电流}你知道吗';
var str = ss.substring(ss.indexOf("{") + 1,ss.indexOf("}"));
方法2
function getStr(str){
let currentStr = ''
currentStr = str.split('{')[1]
currentStr = currentStr.split('}')[0]
return currentStr
}
方法3
var str = "1T1变压器屋顶水箱间、卷帘{电流}你知道吗";
str = str.match(/{(\S*)}/)[1];
console.log(str);//结果电流
当然大家肯定还有n种方式可以实现这个小例子