91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序中實現ajax請求服務器數據的示例

發布時間:2021-01-26 13:54:36 來源:億速云 閱讀:406 作者:小新 欄目:移動開發

這篇文章主要介紹微信小程序中實現ajax請求服務器數據的示例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

微信小程序中實現ajax請求服務器數據的示例

頭部標題和底部tab配置都在 app.json文件中,底部tab位最少兩個,最多五個。下面是app.json文件代碼和相關注釋

{
 "pages":[
  "pages/index/index",
  "pages/tucao/tucao",
  "pages/center/center"
 ],
 "window":{
  "backgroundTextStyle":"",
  "navigationBarBackgroundColor": "red",
  "navigationBarTitleText": "一個標題而已",
  "navigationBarTextStyle":"white"
 },
 "tabBar": {
  "list": [{
   "pagePath": "pages/index/index",
   "text": "首頁",
   "iconPath": "/images/public/menu-cd.png",
   "selectedIconPath": "/images/public/menu.png"
  },{
   "pagePath": "pages/tucao/tucao",
   "text": "吐槽",
   "iconPath": "/images/public/hot-cd.png",
   "selectedIconPath": "/images/public/hot.png"
  },{
   "pagePath": "pages/center/center",
   "text": "我的",
   "iconPath": "/images/public/center-cd.png",
   "selectedIconPath": "/images/public/center.png"
  }],
  "borderStyle": "white"
 }
}

這里我是通過 微信小程序wx.request實現ajax請求服務器數據的,一個程序里面最多能有五個這樣的請求。下面是index.js的代碼

//index.js
//獲取應用實例
var app = getApp()
Page({
 data: {
  motto: 'Hello World',
  userInfo: {},
  Industry:{}
 },
 onLoad: function (res) {
  var that = this
  //調用應用實例的方法獲取全局數據
  app.getUserInfo(function(userInfo){
   //更新數據
   that.setData({
    userInfo:userInfo
   })
  })
  wx.request({
   url: 'http://xx.xxxxx.com/xxx.php',//上線的話必須是https,沒有appId的本地請求貌似不受影響
   data: {},
   method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
   // header: {}, // 設置請求的 header
   success: function(res){
    console.log(res.data.result)
    that.setData({
     Industry:res.data.result
    })
   },
   fail: function() {
    // fail
   },
   complete: function() {
    // complete
   }
  })
 }
})

其中http://xx.xxxxx.com/xxx.php的返回數據格式是一個json,格式如下

微信小程序中實現ajax請求服務器數據的示例

展示頁面就簡單了,變量{{array}} 微信模版遍歷數據使用 wx:for 。index.wxml代碼如下:

<!--index.wxml-->
<view class="container">
 <view bindtap="bindViewTap" class="userinfo">
  <image class="userinfo-avatar" src="{{userInfo.avatarUrl}}" background-size="cover"></image>
  <text class="userinfo-nickname">{{userInfo.nickName}}</text>
 </view>
</view>
<view wx:for="{{Industry}}" wx:ket="{{index}}">
  {{index}}:{{item.name}}
</view>

以上是“微信小程序中實現ajax請求服務器數據的示例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

姜堰市| 余江县| 蓬溪县| 婺源县| 大同县| 呼和浩特市| 武陟县| 卢氏县| 色达县| 邯郸县| 邵阳县| 唐海县| 宁安市| 南昌市| 富顺县| 宁夏| 东港市| 龙江县| 永州市| 郧西县| 乡城县| 仁怀市| 中牟县| 应城市| 上蔡县| 汾西县| 岢岚县| 睢宁县| 克东县| 龙川县| 澄城县| 阳城县| 鹿邑县| 渭源县| 抚顺市| 紫金县| 波密县| 阳新县| 利川市| 天门市| 兖州市|