微信小程序小程序及优化小程序

微信小程序 WXML提供import和include两种引用方式

2019-02-20  本文已影响0人  唐_方

一、学习

二、WXML引用

1、WXML引用方式

2、import方式

  1. 使用
<import src="../template/foot-menu/foot_menu.wxml"/>
<template is="footMenu"/>

说明: footMenu 就是foot_menu.wxml中的最外层标签

<template name="footMenu">
</template>
  1. import的作用域
<template name="A">
  <text> A template </text>
</template>
<import src="a.wxml"/>
<template name="B">
  <text> B template </text>
</template>
<import src="b.wxml"/>
<template is="A"/>  <!-- Error! Can not use tempalte when not import A. -->
<template is="B"/>

3、include

    <include src="header.wxml"/>
    <view> body </view>
    <include src="footer.wxml"/>
    <!-- header.wxml -->
    <view> header </view>
    <!-- footer.wxml -->
    <view> footer </view>

三、WXSS引用

1、wxss引用方式

2、import

@import "../template/foot_menu/foot_menu.wxss"

四、总结

上一篇 下一篇

猜你喜欢

热点阅读