CssStyleToObj Css样式转对象
用于把css的样式属性转换为对象。
基本使用
uni.$c.cssStyleToObj(object|string|array)
js
const cssStyle1 = 'width: 100rpx; height: 200rpx; background-color: #f00;'
console.log(uni.$c.cssStyleToObj(cssStyle1)) // { width: '100rpx', height: '200rpx', backgroundColor: '#f00' }
const cssStyle2 = [{backgroundColor:'#f00'},{width:'10px','border-radius':'10rpx'},'width: 100rpx; height: 200rpx;']
console.log(uni.$c.cssStyleToObj(cssStyle2)) // { backgroundColor: '#f00', borderRadius: '10rpx', width: '100rpx', height: '200rpx' }
1
2
3
4
5
2
3
4
5