原生js中使用layui,参数值在sessionStorage里取值为null
data: {type: sessionStorage.getItem('type')}
这样取值则可以解决!
data: {type: function () {
return Number(sessionStorage.getItem('type'))
}}
原生js中使用layui,参数值在sessionStorage里取值为null
data: {type: sessionStorage.getItem('type')}
这样取值则可以解决!
data: {type: function () {
return Number(sessionStorage.getItem('type'))
}}
本文标题:layui上传组件加参数取值问题
本文链接:https://www.haomeiwen.com/subject/fezcmltx.html
网友评论