糊涂的秋风
糊涂的秋风
  • 发布:2024-08-07 10:46
  • 更新:2024-08-07 11:06
  • 阅读:81

小程序无问题,运行到浏览器有问题报错

分类:uni-app

TypeError: Cannot read properties of undefined (reading 'bar_text')
找不到变量

2024-08-07 10:46 负责人:无 分享
已邀请:
BFC

BFC

你好,补充一下开发环境和相关版本,提供一些最小的可复现的demo

  • 糊涂的秋风 (作者)

    <up-notice-bar color="#00aaff" bgColor="#FFFFFF" :text="String(index_info.bar_text)"></up-notice-bar>

    <script>


    export default {  
    data() {
    return {

    index_info.bar_text:'test'

    }}

    2024-08-07 10:59

  • BFC

    回复 糊涂的秋风: 这个data写法不支持把, 换成 return { index_info: {bar_text: text} } 试试

    2024-08-07 11:14

  • 糊涂的秋风 (作者)

    回复 BFC: export default {

    return {

    index_info: {bar_text: text},

    }}

    报错

    2024-08-07 11:17

要回复问题请先登录注册