码迷,mamicode.com
首页 > 微信 > 详细

「小程序JAVA实战」小程序页面引用外部wxml通用页面(21)

时间:2019-01-17 21:53:46      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:分享   frame   ram   调用   art   tps   images   cheng   外部   

转自: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)

标签:分享   frame   ram   调用   art   tps   images   cheng   外部   

原文地址:https://www.cnblogs.com/sharpest/p/10284659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!