微信小程序 + mock.js 實現後台模拟及調試 - 新聞資(zī)訊 - 雲南小程序開發|雲南軟件開發|雲南網站(zhàn)建設-西山區知普網絡科技工作室

159-8711-8523

雲南網建設/小程序開發/軟件開發

知識

不管是網站(zhàn),軟件還是小程序,都要直接或間接能為您産生價值,我們在追求其視覺表現的同時,更側重于功能的便捷,營銷的便利,運營的高效,讓網站(zhàn)成為營銷工具,讓軟件能切實提升企業(yè)内部管理水平和(hé)效率。優秀的程序為後期升級提供便捷的支持!

微信小程序 + mock.js 實現後台模拟及調試

發表時間:2021-4-22

發布人:葵宇科技

浏覽次數:83

一、創建小程序項目

mock.js 從 https://github.com/nuysoft/Mock/blob/refactoring/dist/mock.js 下(xià)載

api.js:配置模拟數據和(hé)後台接口數據,通(tōng)過 DEBUG = true;//切換數據入口

複制代碼
let API_HOST = "http://xxx.com/xxx";
let DEBUG = true;//切換數據入口
var Mock = require('mock.js')
function ajax(datahttps://www.wxapp-union.com/= '', fn, method = "get", header = {}) {
    if (!DEBUG) {
        wx.request({
            url: config.API_HOST + data,
            method: method ? method : 'get',
            data: {},
            header: header ? header : { "Content-Type": "application/json" },
            success: function (res) {
                fn(res);
            }
        });
    } else {
        // 模拟數據
        var res = Mock.mock({
            'error_code': '',
            'error_msg': '',
            'data|10': [{
                'id|+1': 1,
                'img': "@image('200x100', '#4A7BF7','#fff','pic')",
                'title': '@ctitle(3,8)',
                'city': "@county(true)",
                'stock_num': '@integer(0,100)',//庫存數量  
                'marketing_start': '@datetime()',
                'marketing_stop': '@now()',
                'price': '@integer(100,2000)',//現價,單位:分  
                'original_price': '@integer(100,3000)'
            }]  
        })
        // 輸出結果
       // console.log(JSON.stringify(res, null, 2))
        fn(res);
    }
}
module.exports = {
    ajax: ajax
}
複制代碼

index.js頁面

複制代碼
//index.js
//獲取應用實例
var app = getApp()
var API = require('../../utils/api.js')
Page({
    data: {
    },
    onLoad: function () {
        console.log('onLoad')
        var that = this
        // 使用 Mock
        API.ajax('', function (res) {
            //這裡既可(kě)以獲取模拟的res
            console.log(res)
            that.setData({
                list:res.data
            })
        });

        console.log(this.data.list)
    }
})
複制代碼

index.wxml

複制代碼
<!--index.wxml-->
<block wx:for="{{list}}" wx:key="name">
  <view>{{item.title}}</view>
  <text>{{item.city}}</text>
  <view>
    <text>{{item.marketing_start}}</text>
  </view>
  <image src='https://www.wxapp-union.com/{{item.img}}'></image>
</block>
複制代碼

頁面顯示

相關(guān)案例查看更多