收藏
回答

Cannot read property '__dataProxy'

一个页面进行状态切换,另外一个页面负责监听,切换频繁就出现undefine的报错


回答关注问题邀请回答
收藏

3 个回答

  • 工号 9527
    工号 9527
    2018-01-03

    有没有代码?

    2018-01-03
    有用
    回复
  • 2018-06-11
    <block wx:if="{{options.name === 'chatEquipment' || options.name === 'chatServices'}}">
    <component-input-switch bind:bottomInput="componentBottomInput" bottom-input="{{comBottomInput}}"></component-input-switch>
    </block>
    <block wx:elif="{{options.name === 'chatHandling'}}">
    <component-input-keywords bind:bottomInput="componentBottomInput" bottom-input="{{comBottomInput}}" keywords="{{keywords}}"></component-input-keywords>
    </block>
    <block wx:else>
    <component-input-default bind:bottomInput="componentBottomInput" bottom-input="{{comBottomInput}}"></component-input-default>
    </block>
    <component-user-info bind:getUserInfo="componentGetUserInfo" user-info-button="{{comUserInfo}}"></component-user-info>

    我这式样引入组件 安卓会出现报错 但是功能正常~

    2018-06-11
    有用
    回复
  • 山竹
    山竹
    2018-01-03

    自定义组件,包含官方组件swiper

    properties: {
    banners: {
    type: Array,
       value: []
    }
    },

    切换并监听城市变化

    onShow () {
    cityManager.getCurrentCitySync().then((city) => {
    if (city) {
    let {curCity} = this.data
         if ((city.cityId != curCity.cityId)||!curCity) {
    this.setData({
    'curCity': city,
           })
    this.loadData()
    }
    }
    })
    },
    this.fetchPageInfo().then((res) => {
    if(!res.activitySubject){
    res.activitySubject=null
     }
    this.setData(res)
    this.refreshList()
    })


    2018-01-03
    有用
    回复
登录 后发表内容