网友真实露脸自拍10p,成人国产精品秘?久久久按摩,国产精品久久久久久无码不卡,成人免费区一区二区三区

小程序模板網

微信小程序滾動到某個位置改變效果,微信支付PHP案例

發布時間:2018-02-09 14:51 所屬欄目:小程序開發教程

 

 

 

  1. <scroll-view>
    <view>Some of the words<view>
    <view bindscroll="scroll" class="{{variable>200 ? 'class1' : 'class2'}}"</view>
    </scroll-view>
 

  1. //JS文件
    //滾動監聽
    scroll: function (e) {
    this.setData({
    scrollTop:e.detail.scrollTop
    })
    }

其中,variable為全局變量,  class1、class2即為相應的css

 

二:微信支付php案例分享

 前端代碼:

 

  1. wx.request({
    url: 'https://www.yourhost.com/weixin/WeiActivity/payJoinfee',//改成你自己的鏈接
    header: {
    'Content-Type': 'application/x-www-form-urlencoded'
    },
    method:'POST',
    success: function(res) {
    console.log(res.data);
    console.log('調起支付');
    wx.requestPayment({
    'timeStamp': res.data.timeStamp,
    'nonceStr': res.data.nonceStr,
    'package': res.data.package,
    'signType': 'MD5',
    'paySign': res.data.paySign,
    'success':function(res){
    console.log('success');
    wx.showToast({
    title: '支付成功',
    icon: 'success',
    duration: 3000
    });
    },
    'fail':function(res){
    console.log('fail');
    },
    'complete':function(res){
    console.log('complete');
    }
    });
    },
    fail:function(res){
    console.log(res.data)
    }
    });


易優小程序(企業版)+靈活api+前后代碼開源 碼云倉庫:starfork
本文地址:http://www.xiuhaier.com/wxmini/doc/course/21883.html 復制鏈接 如需定制請聯系易優客服咨詢:800182392 點擊咨詢
QQ在線咨詢
AI智能客服 ×