首頁 > 微信小程式 > 小程式開發 > 微信小程式(應用程式號)開發新聞用戶端實例

微信小程式(應用程式號)開發新聞用戶端實例

高洛峰
發布: 2017-02-22 14:33:23
原創
2178 人瀏覽過

這篇文章主要介紹了微信小程式(應用號)開發新聞客戶端實例的相關資料,需要的朋友可以參考下

下載最新版的微信小程式開發工具,目前是v0 .9.092300

下載網址:https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html

官方文件:https://mp.weixin.qq.com/debug/wxadoc/dev/index.html

git下載網址:http://git.oschina. net/dotton/news

先看下效果圖:

微信小程式(應用程式號)開發新聞用戶端實例

#Paste_Image.png

一、新建應用

1.內測階段對於無內測號的開發者,請點無AppId。

微信小程式(應用程式號)開發新聞用戶端實例

Paste_Image.png

2.然後選擇一個本機目錄作為工程目錄。

微信小程式(應用程式號)開發新聞用戶端實例

Paste_Image.png

3.專案名稱任意,設定好目錄,並勾選目前目錄建立quick start專案。如圖:

微信小程式(應用程式號)開發新聞用戶端實例

Paste_Image.png

#4.點選新增項目,這時可以運作的效果。是自己的微信個人資訊以及一HelloWorld文字方塊。
5.右邊是調試窗口,有2個警告,是由於沒有AppID導致的,可以暫時忽略,不影響開發。

微信小程式(應用程式號)開發新聞用戶端實例

Paste_Image.png

6.提示一下,在app.json中設定debug:true,這樣控制台看到即時的互動訊息,以及將來在js檔案中設定斷點,類似與Chrome的調試工具以及Firefox的Firebug。

關於首頁配置:

{
 "pages":[
 "pages/index/index",
 "pages/logs/logs"
 ],
 "window":{
 "backgroundTextStyle":"light",
 "navigationBarBackgroundColor": "#fff",
 "navigationBarTitleText": "WeChat",
 "navigationBarTextStyle":"black"
 },
 "debug":true
}
登入後複製

#其中pages屬性顯示每一個頁面的存在,其中第一個為首頁,即pages/index/index

二、請求網路API介面

#1.前提條件:

##這裡要用到聚合資料的新聞接口,前往:https://www.juhe.cn/docs/api/id/235;註冊、申請接口,拿到key,我這裡已經申請到一個key:482e213ca7520ff1a8ccbb262c90320a,可以直接拿它做測試,然後就可以將它整合到自己的應用程式了。


2.使用微信小程式介面來存取網路:


改寫index.js檔:

//index.js
//获取应用实例
var app = getApp()
Page({
 data: {
 motto: 'Hello World',
 userInfo: {}
 },
 //事件处理函数
 bindViewTap: function() {
 wx.navigateTo({
  url: '../logs/logs'
 })
 },
 onLoad: function () {
 // 访问聚合数据的网络接口
 wx.request({
 url: 'http://v.juhe.cn/toutiao/index',
 data: {
  type: '' ,
  key: '482e213ca7520ff1a8ccbb262c90320a'
 },
 header: {
  'Content-Type': 'application/json'
 },
 success: function(res) {
  console.log(res.data)
 }
 })

 console.log('onLoad')
 var that = this
 //调用应用实例的方法获取全局数据
 app.getUserInfo(function(userInfo){
  //更新数据
  that.setData({
  userInfo:userInfo
  })
 })
 }
})
登入後複製

3.查看效果,檢查Console控制台,得到以下資訊:

微信小程式(應用程式號)開發新聞用戶端實例

#Paste_Image.png

#說明已經成功取得到了資料。


三、將json格式的資料渲染到檢視

這裡要用到swipe元件實作大圖輪播,文件請見:https ://mp.weixin.qq.com/debug/wxadoc/dev/component/swiper.html1.清空原index.wxml內容,加入如下程式碼:

<swiper indicator-dots="true"
 autoplay="true" interval="5000" duration="1000">
 <block wx:for="{{topNews}}">
 <swiper-item>
  <image src="{{item.thumbnail_pic_s02}}" class="slide-image" width="355" height="150"/>
 </swiper-item>
 </block>
</swiper>
登入後複製

2.對應地在index.js檔案的onLoad方法中加入以下程式碼來取得網路資料

#

//index.js
//获取应用实例
var app = getApp()
Page({
 data: {
 topNews:[],
 techNews:[]
 },
 onLoad: function () {
 var that = this
 // 访问聚合数据的网络接口-头条新闻
 wx.request({
 url: &#39;http://v.juhe.cn/toutiao/index&#39;,
 data: {
  type: &#39;topNews&#39; ,
  key: &#39;482e213ca7520ff1a8ccbb262c90320a&#39;
 },
 header: {
  &#39;Content-Type&#39;: &#39;application/json&#39;
 },
 success: function(res) {
  if (res.data.error_code == 0) {
  that.setData({
  topNews:res.data.result.data
  })
  } else {
  console.log(&#39;获取失败&#39;);
  }
 }
 })

 }
})
登入後複製

3.看到輪播已經成功的展示出來了

微信小程式(應用程式號)開發新聞用戶端實例

Paste_Image.png

4.依樣畫葫蘆,同樣操作讀取列表新聞:

#

<view class="news-list">
 <block wx:for="{{techNews}}">
 <text class="news-item">{{index + 1}}. {{item.title}}</text>
 </block>
</view>
登入後複製

配合樣式表,不然列表文字排版是橫向的,將以下css加到index.wxss中:

.news-list {
 display: flex;
 flex-direction: column;
 padding: 40rpx;
}
.news-item {
 margin: 10rpx;
}
登入後複製

#

微信小程式(應用程式號)開發新聞用戶端實例

继续美化,文字列表也采用缩略图+大标题+出处+日期的形式

微信小程式(應用程式號)開發新聞用戶端實例

Paste_Image.png

样式表与布局文件 index.wxss

/**index.wxss**/
.news-list {
 display: flex;
 flex-direction: column;
 padding: 40rpx;
}

.news-item {
 display: flex;
 flex-direction: row;
 height:200rpx;
}

.news-text {
 display: flex;
 flex-direction: column;
}

.news-stamp {
 font-size: 25rpx;
 color:darkgray;
 padding: 0 20rpx;
 display: flex;
 flex-direction: row;
 justify-content:space-between;
}

.news-title {
 margin: 10rpx;
 font-size: 30rpx;
}

.container {
 height: 5000rpx;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: space-between;
 /*padding: 200rpx 0;*/
 box-sizing: border-box;
}

.list-image {
 width:150rpx;
 height:100rpx;
}
登入後複製

index.wxml

<!--index.wxml-->
<swiper indicator-dots="true"
 autoplay="true" interval="5000" duration="1000">
 <block wx:for="{{topNews}}">
 <swiper-item>
  <image src="{{item.thumbnail_pic_s02}}" mode="aspectFill" class="slide-image" width="375" height="250"/>
 </swiper-item>
 </block>
</swiper>
<view class="container news-list">
 <block wx:for="{{techNews}}">
 <view class="news-item">
  <image src="{{item.thumbnail_pic_s}}" mode="aspectFill" class="list-image"/>
  <view class="news-text">
  <text class="news-title">{{item.title}}</text>
  <view class="news-stamp">
   <text>{{item.author_name}}</text>
   <text>{{item.date}}</text>
  </view>
  </view>
 </view>
 </block>
</view>
登入後複製

四、跳转详情页与传值

保存当前点击的新闻条目信息中的title,参见官方文档:https://mp.weixin.qq.com/debug/wxadoc/dev/component/swiper.html

传值到详情页

<!--logs.wxml-->
<view class="container">
 <text class="news-title">{{title}}</text>
 <text class="news-info">暂时找不到WebView的组件接口,于是不能加载网页数据</text>
</view>
 //事件处理函数
 bindViewTap: function(event) {
 wx.navigateTo({
  url: &#39;../detail/detail?title=&#39;+event.currentTarget.dataset.newsTitle
 })
 }

//index.js
 //事件处理函数
 bindViewTap: function(event) {
 wx.navigateTo({
  url: &#39;../detail/detail?title=&#39;+event.currentTarget.dataset.newsTitle
 })
 }
登入後複製

<!--index.wxml-->
//加入data-xxx元素来传值
<view class="container news-list">
 <block wx:for="{{techNews}}">
 <view class="news-item" data-news-title="{{item.title}}" bindtap="bindViewTap">
  <image src="{{item.thumbnail_pic_s}}" mode="aspectFill" class="list-image"/>
  <view class="news-text">
  <text class="news-title">{{item.title}}</text>
  <view class="news-stamp">
   <text>{{item.author_name}}</text>
   <text>{{item.date}}</text>
  </view>
  </view>
 </view>
 </block>
</view>
登入後複製

当然也可以通过获取全局的变量的方式传值,这里场景是由一个页面与子页面是一对一传值关系,所以不推荐,可参考quickStart项目中微信个人信息的传值方式来做。 app.js末尾加上

 globalData:{
    userInfo:null,
    newsItem:null
  }
})
登入後複製

微信小程式(應用程式號)開發新聞用戶端實例

 Paste_Image.png

由于未在官方文档中找到WebView的组件,所以详情的网页正文暂时无法实现。

结语

整体开发过程还是比较舒适的,上手难度不高,过程中用到一定的CSS语法,本质上还是体现了一个H5开发模式,WXML实质上一种模板标签语言。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

更多微信小程式(應用程式號)開發新聞用戶端實例相关文章请关注PHP中文网!


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板