1. 程式人生 > >「小程序JAVA實戰」小程序頁面引用外部wxml通用頁面(21)

「小程序JAVA實戰」小程序頁面引用外部wxml通用頁面(21)

imageview 文件 dig fad 單純 tps pre com tar

轉自:https://idig8.com/2018/08/09/xiaochengxu-chuji-21/

現在都是講究開發的效率,原來單純的android 和 ios 已經不在吃香了,都是混合開發,混合開發很多頁面的結構基本都是上中下,head,body,foot,所以小程序也要這麽的滿足如圖例。源碼:https://github.com/limingios/wxProgram.git 中的No.8

技術分享圖片

小程序的引入外部的頁面

include 可以將目標文件除了 template ,wxs 外的整個代碼引入,相當於是拷貝到 include 位置。

  1. 關鍵字 include
  2. 官方的闡述
    >https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/import.html

技術分享圖片

  1. 演示調用外部的頁面

head.wxml


<view class="container"> head </view>

body.wxml

<view class="container">
body
</view>

isInclude.wxml

<include src="head.wxml"/>
<include src="body.wxml"/>
<view class="container">
foot
</view>

技術分享圖片

PS:就是為了相似的頁面互相的調用,搬磚也的想辦法找技巧對吧 哈哈!

「小程序JAVA實戰」小程序頁面引用外部wxml通用頁面(21)