微信小程序开发(二)

本节章主要是如何利用{{}}来动态绑定数据,和利用template巧妙的减少代码量。

文章页面

滑块视图,文章略缩页面。

news news

CODE

pages/home/home.wxml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//引入新闻略视图缩模版,后文中详细说说
<import src="home-item/home-item-template.wxml" />
<view class="home">
//引入滑块视图swiper组建。
<view>
<swiper catchtap="onSwiperTap" indicator-dots="true" autoplay="true" interval="2000">
<swiper-item><image data-homeId='3' src="/image/ipad.png"></image></swiper-item>
<swiper-item><image data-homeId='4' src="/image/ry.jpg"></image></swiper-item>
<swiper-item><image data-homeId='5' src="/image/jn.jpg"></image></swiper-item>
</swiper>
</view>
//引入循环for组建可使用数组中各项的数据重复渲染该组件。
//homr-key为获取的所有文章数据
//使用 wx:for-item 可以指定数组当前元素的变量名
//使用 wx:for-index 可以指定数组当前下标的变量名
<block wx:for="{{home_key}}" wx:for-item="item" wx:for-index="idx">
<!--
catchtap在上一章提到不多说。
data-“”为微信自定义数据{{item.homeId}}为item下的homeId
利用template导入“homeItem”模版。{{...}}展开item下获取的数据
-->
<view catchtap="onHomeTap" data-homeId="{{item.homeId}}">
<template is="homeItem" data="{{...item}}" />
</view>
</block>
</view>

pages/home/home.wxss

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//引入模版样式
@import "home-item/home-item-template.wxss";

swiper{
width: 100%;
height: 500rpx;
}
swiper image{
width: 100%;
height: 500rpx;
}
.home{
display: fllex;
background: #e8e8e8;
flex-direction: column;
}

pages/home/home.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//引入离线数据
var postsData = require('../../data/home_data.js')

Page({
data: {
},
//生命周期函数--监听页面加载
onLoad: function (options) {
// this.data.postList =postsData.postList;
//文章数据导入
this.setData({
home_key: postsData.postList
});
},
//页面跳转
onHomeTap: function (event) {
var homeId = event.currentTarget.dataset.homeid;
//console.log(homeid);
wx.navigateTo({
url: 'home-detail/home-detail?id=' + homeId,
})
},
//轮播图网页跳转
onSwiperTap: function (event) {
//target和currentTarget
//target是当前点击的组件,currentTarget当前事件捕获的组建。
var homeId = event.target.dataset.homeid;
wx.navigateTo({
url: 'home-detail/home-detail?id=' + homeId,
})
},
})

pages/home/home.josn

1
2
3
4
{
"navigationBarBackgroundColor": "#405f80",
"navigationBarTitleText": "新闻"
}

pages/home-item/home-item-template.wxml

文章略缩template模版。其中{{}}为data中传来的数据进行绑定。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template name="homeItem">
<view class="home-container">
<view class="home-author-date">
<image class="home-author" src="{{user_touxiang}}"></image>
<text class="home-date">{{time}}</text>
</view>
<text class="home-two">{{biaoti}}</text>
<image class="home-tupian" src="{{tupian}}"></image>
<text class="home-text">{{text}}</text>
<view class="home-like">
<image class="home-like-image" src="/image/icon/chat1.png"></image>
<text class="home-like-text">{{collect_num}}</text>
<image class="home-like-image" src="/image/icon/view.png"></image>
<text class="home-like-text">{{view_num}}</text>
</view>
</view>
</template>

pages/home-item/home-item-template.wxss

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.home-container{
display: flex;
flex-direction: column;
margin-top: 20rpx;
margin-bottom: 40rpx;
background-color: #fff;
border-bottom: 1px solid #ededed;
border-top: 1px solid #ededed;
padding-bottom: 5px;

}
.home-author{
margin: 20rpx 20rpx 20rpx 20rpx;
height: 60rpx;
width: 60rpx;
border-radius: 60rpx;
vertical-align:middle;
}
.home-date{
margin-left:20rpx;
vertical-align:middle;
margin-bottom:5px;
font-size:26rpx;
}
.home-two{
font-size:35rpx;
font-weight:600;
color:#333;
margin-bottom:10rpx;
margin-left:20rpx;
}
.home-tupian{
margin-left: 16rpx;
width:100%;
height:440rpx;
margin:auto 0;
margin-bottom: 15rpx;
}
.home-text{
color:#666;
font-size:28rpx;
margin-bottom: 20rpx;
padding-left: 20rpx;
letter-spacing:2rpx;
line-height: 40rpx;
}
.home-like-image{
margin-left: 20rpx;
height:16px;
width:16px;
margin-right: 8px;
vertical-align: middle;
}
.home-like-text{
vertical-align: middle;
margin-right: 20rpx;
color:#666;
font-size: 30rpx;
}