이 글에서는 주로 WeChat Mini 프로그램의 사용자 정의 템플릿 사용법을 소개합니다. WeChat Mini 프로그램 사용자 정의 템플릿의 정의, 데이터 호출, 레이아웃 설정 및 기타 간단한 사용 기술을 예시 형식으로 자세히 분석합니다. 그것을 참조하십시오.
1. 새 wxml을 만듭니다. (테스트 편의를 위해 wxml 파일은 여기 홈 디렉터리에 생성됩니다.)
/home/home/botmenu.wxml:
<template name="bottommenu"> <view class="bottomposition"> <navigator class="item_info" url="../home/home"> <image src="../img/sy.png"></image> <text>首页</text> </navigator> <navigator class="item_info" url="/pages/home/home"> <image src="../img/xx.png"></image> <text>消息</text> </navigator> <navigator class="item_info" url="/pages/home/home"> <image src="../img/lz.png"></image> <text>工具</text> </navigator> <navigator class="item_info" url="/pages/home/home"> <image src="../img/wo.png"></image> <text>我</text> </navigator> </view> </template>
2. /home/botmenu.wxss :
.bottomposition{ width: 100%; height: 10%; position: fixed; overflow: hidden; left: 0; top: 90%; z-index: 1100; display: flex; border-top: 1rpx solid #dadada; } .item_info { width: 25%; height: 100%; display: flex; align-items: center; flex-direction: column; justify-content: center; } .item_info image { width: 20px; height: 20px; } .item_info text { margin-top: 5px; font-size: 12px; } .infolist{ margin:10px; padding: 0 10px; font-size: 12px; }
3. 페이지 스타일 참조
<import src="../home/home.wxml"/> <view class="info"> <template is="bottommenu"></template> </view>
5. index.js의 데이터 데이터:
@import "../home/home.wxss";
6 위 내용은 WeChat 애플릿 사용자 정의 템플릿 기능이 구현되었습니다. 모든 사람에게 도움이 되기를 바랍니다.
관련 권장사항:
WeChat 애플릿에서 뷰 라벨의 너비와 높이를 동적으로 변경하는 방법 WeChat 애플릿 개발 소개 예WeChat 애플릿에서 이미지 확대 미리보기 기능을 구현하는 방법위 내용은 WeChat 미니 프로그램을 위한 사용자 정의 템플릿의 기능 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!