小程序模板網(wǎng)

小程序使用switchTab跳轉(zhuǎn)后頁面不刷新,Html轉(zhuǎn)Json轉(zhuǎn)Wxml

發(fā)布時(shí)間:2018-04-18 10:30 所屬欄目:小程序開發(fā)教程

一:使用switchTab跳轉(zhuǎn)后頁面不刷新的問題

分享者:yonggeit,原文地址

 

				
  1. wx.switchTab({
  2. url: '../index/index',
  3. success: function (e) {
  4. var page = getCurrentPages().pop();
  5. if (page == undefined || page == null) return;
  6. page.onLoad();
  7. }
  8. })

switchTab成功跳轉(zhuǎn)后調(diào)用success,此時(shí)可以拿到跳轉(zhuǎn)后頁面的page對(duì)象,從而調(diào)用頁面onLoad方法重載頁面;微信后期應(yīng)該會(huì)加相應(yīng)的參數(shù)來決定是否刷新跳轉(zhuǎn)

 

二:Html轉(zhuǎn)Json轉(zhuǎn)Wxml

分享者:小春,原文地址  wxml

 

				
  1. <view class="newsContainer">
  2. <import src="../../utils/wxParse/wxParse.wxml" />
  3. <template is="wxParse" data="{{wxParseData:content.nodes}}" />
  4. </view>

js

 

				
  1. var WxParse = require('../../utils/wxParse/wxParse.js')
  2.  
  3. onShow: function () {
  4. var that = this
  5. utils_news.GetNewsSingle(clippingsId, function (result) {
  6. WxParse.wxParse('content', 'html', result.content, that, 1);
  7. })
  8. }


易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開源 碼云倉(cāng)庫(kù):starfork
本文地址:http://22321a.com/wxmini/doc/course/23655.html 復(fù)制鏈接 如需定制請(qǐng)聯(lián)系易優(yōu)客服咨詢:800182392 點(diǎn)擊咨詢
QQ在線咨詢