云服务器网:购买云服务器和VPS必上的网站!

微信小程序怎么动态更新页面

微信小程序怎样动态更新页面微信小程序动态更新页面的案例:wxml代码:<swiper-itemwx:for=\"{{novel}}\"wx:key

微信小程序怎样动态更新页面

微信小程序动态更新页面的案例:

wxml代码:

<swiperindicator-dots="{{true}}"

current="{{currentindex}}">

<swiper-itemwx:for="{{novel}}"wx:key="key">

<viewclass="containercard">

<imagesrc="{{item.imagePath}}"></image>

<text>第{{index+1}}部:{{item.name}}</text>

<text>评价:{{item.comment}}</text>

<textbindtap="onLoad"wx:if="{{index<novel.length⑴}}">返回尾页</text>

</view>

</swiper-item>

</swiper>

<buttonbindtap="f1">更新书籍</button>

</view>

wxss代码:

.container1{

height:100vh;

display:flex;

flex-direction:column;

justify-content:space-around;

align-items:center;

}

.novel{

display:flex;

}

.novel-image{

width:200rpx;

height:200rpx

}

.novel-swiper{

height:90vh

}

.card{

height:100%;

width:100%

}

.return-button{

position:absolute;

right:30px;

top:20px;

font-size:25rpx;

font-style:italic;

border:2pxsolidyellow;

border-radius:20%

}

js文件代码:

Page({

data:{

novel:[

{

name:"《平凡的世界》",

comment:"中国当代城乡社会生活的长篇小说",

imagePath:"/pages/img/小说1.jpg"

},

{

name:"《骆驼祥子》",

comment:"优秀的现实主义小说",

imagePath:"/pages/img/小说2.jpg"

},

{

name:"《家》",

comment:"入选20世纪中文小说100强(第8位)",

imagePath:"/pages/img/小说3.jpg"

},

{

name:"《悲惨世界》",

comment:"雨果现实主义小说中最成功的一部代表作",

imagePath:"/pages/img/小说4.jpg"

},

],

count:0,

},

onLoad:function(options){

this.setData({

currentindex:this.data.novel.length⑴

})

},

f1:function(event){

this.setData({

//新的数据

"novel[3].name":"《巴黎圣母院》",

"novel[3].comment":"是浪漫主义作品中一座里程碑",

"novel[3].imagePath":"/pages/img/小说5.jpg"

})

}

})

本文来源:https://www.yuntue.com/post/80123.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注