美文网首页
Weex踩坑实录

Weex踩坑实录

作者: LevyLin | 来源:发表于2018-05-11 10:27 被阅读0次

1.新组件<recycle-list>无法与<loading>配合使用。目前遇到的情况主要是loading没法正常隐藏。

    <recycle-list class="gb-box" for="item in results">
        <cell-slot >
          <image class="i-gd" :src="item.url" resize="cover"/>
        </cell-slot>
        <loading class="loading" :display="loadinging?'show':'hide'" @loading="onloadMore">
          <text class="indicator-text">Loading ...</text>
          <loading-indicator class="indicator"></loading-indicator>
        </loading>
    </recycle-list>

方法如下:

methods: {
    loadData(index) {
      modal.toast({
        message: "loadData..." + index,
        duration: 2.0
      });
      stream.fetch(
        {
          method: "GET",
          type: "json",
          url: "http://gank.io/api/data/福利/10/" + index
        },
        res => {
          let data = res.data;
          this.loadinging = false;
          if (!data["error"]) {
            this.results.push(...data["results"]);
          }
        }
      );
    },
    onloadMore() {
      this.index++;
      this.loadinging = true;
      this.loadData(this.index);
    }
  }

在加载成功后,居然就是不隐藏<loading>,后来改成<list>就正常了
如下:

    <list class="gb-box">
        <cell v-for="item in results">
          <image class="i-gd" :src="item.url" resize="cover"/>
        </cell>
        <loading class="loading" :display="loadinging?'show':'hide'" @loading="onloadMore">
          <text class="indicator-text">Loading ...</text>
          <loading-indicator class="indicator"></loading-indicator>
        </loading>
    </list>

相关文章

  • Weex踩坑实录

    1.新组件无法与配合使用。目前遇到的情况主要是loading没法正常...

  • weex ios踩坑实录

    问题 xcode 编译显示 xcode 编译显示 weexSDK.h 或其他的.h 文件不存在 终端中 weex ...

  • Weex线上踩坑实录

    关于weex的基础集成网上有很多博客,我就不重点介绍,今天主要分享一下weex文档中并没有的,在实际项目集成中的碰...

  • Weex入门踩坑记录

    Weex入门踩坑记录

  • uniApp-study

    1. weex-image(nvue)踩坑 https://weex.apache.org/zh/docs/com...

  • weex 踩坑

    1. 用weex实现页面跳转? 1.1 使用vue-router position: fixed/sticky 的...

  • weex踩坑

    安装脚手架、依赖时不要使用cnpm 出现permission denyied错误时将对应文件夹写权限打开 list...

  • 基于Weex的跨多端融合方案(四)——Weex实战采坑实录

    Weex实战采坑实录 v-show 在端上无效 使用v-if 实现类似弹窗效果很坑爹,估计是跟渲染时序有关 Wee...

  • weex踩坑记

    样式篇1.不支持 .classA .classB 只能用单个样式名2.只能用flex布局3.宽度只能用px4...

  • weex踩坑记录

    weex版本1.5.3npm版本 6.4.1 请求 调用本地包,文件请求使用nat.js http://natjs...

网友评论

      本文标题:Weex踩坑实录

      本文链接:https://www.haomeiwen.com/subject/xziopxtx.html