feat(wxs): style.wxs support camel case attr (#4281)

This commit is contained in:
nemo-shen 2021-06-20 20:45:15 +08:00 committed by GitHub
parent e3b7ed997e
commit ac50898519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,16 @@
var object = require('./object.wxs');
var array = require('./array.wxs');
function kebabCase(word) {
var newWord = word
.replace(getRegExp("[A-Z]", 'g'), function (i) {
return '-' + i;
})
.toLowerCase()
return newWord;
}
function style(styles) {
if (array.isArray(styles)) {
return styles
@ -21,7 +31,7 @@ function style(styles) {
return styles[key] != null && styles[key] !== '';
})
.map(function (key) {
return [key, [styles[key]]].join(':');
return [kebabCase(key), [styles[key]]].join(':');
})
.join(';');
}