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