美文网首页
layui上传组件加参数取值问题

layui上传组件加参数取值问题

作者: xsmile21 | 来源:发表于2021-07-19 13:58 被阅读0次

    原生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