-小程序依赖微信
QQ 微信 支付宝 字节跳动 美团 鸿蒙 都有类似小程序
注册小程序账号
稳定版
开发文档
1、app.json
pages 存放项目的页面
哪个页面在最前面,哪个页面是默认页面
window 项目的窗口
“backgroundTextStyle”: “light”, 背景文字:light|dark
“navigationBarBackgroundColor”: “#000”, 导航栏背景颜色
“navigationBarTitleText”: “BLACK”, 导航栏标题
“navigationBarTextStyle”: “white” 导航栏文字颜色:white|black
tabBar 底部栏的配置
"tabBar": {
"color": "#484848",
"selectedColor": "#109fef",
"list": [{
"pagePath": "pages/base/base",
"text": "语法",
"iconPath": "/images/home.png",
"selectedIconPath": "/images/home-h.png"
}]
},
color 文字默认颜色
selectedColor 文字选中颜色
list 页面列表:
pagePath 页面地址
text 文本
iconPath 图标地址
selectedIconPath 选中图标地址
2、页面.json
“usingComponents”: {} 使用组件
“navigationBarTitleText”: “基础语法” 标题
“enablePullDownRefresh”: true 允许下拉刷新
“backgroundColor”: “#eee” 背景颜色
“backgroundTextStyle”: “dark” 背景文字颜色
逻辑视觉分区(div)
文本(span)
user-select=“true” 用户长按可选择
图片组件
src 图片地址
mode 模式:
value 值
placeholder 提示文本
password=“true” 密码框
type 弹出不同键盘:
text 文本输入键盘
number 数字输入键盘
idcard 身份证输入键盘
digit 带小数点的数字键盘
safe-password 密码安全输入键盘 指引
nickname 昵称输入键盘
confirm-type 键盘右下角案例
send 右下角按钮为“发送”
search 右下角按钮为“搜索”
next 右下角按钮为“下一个”
go 右下角按钮为“前往”
done 右下角按钮为“完成”
按钮
type 颜色类型
primary 绿色
default 白色
warn 红色
size="mini" 行内小按钮
切换
color 颜色
type=“checkbox” 选择框
选择
header-text 标题文本
mode:
times 事件
date 日期
region 省市区
图标
type:success, success_no_circle, info, warn, waiting, cancel, download, search, clear
size=“100” 单位为px
滚动区域
scroll-x 水平
scroll-y 垂直
幻灯片
indicator-dots=“true” 是否显示提示点
autoplay="true" 自动播放
circular="true" 衔接滑动
wx:if="{{条件}}"
wx:elif="{{多重条件}}"
wx:else
{{}}
placeholder="{{msg}}" 属性的渲染
<view wx:for="{{list}}" wx:key="index">{{index}}.{{item}}</view>
注意:key值自动解构。eg:若想使用item.docid做为key,wx:key="docid"即可
定义:
<template name="user">
<view>用户名:{{name}}</view>
</template>
导入:只能导入template
<template is="user" data="{{name:'mewow'}}"></template>
<include src="..."></include>
bindTap 点击
bindconfim 确认
bindchange 表单值发生变化
bindinput 表单输入
调用方法
<button bindTap="showMsg">事件</button>
自定义方法:
showMsg(){}
定义参数:
<button bindtap="showMsg" data-msg="小程序">小程序</button>
在方法中获取参数:
showMsg(e){
let msg=e.currentTarget.dataset.msg;
wx.showToast({
title: 'hello '+msg,
icon:"loading"
})
}
表单:
<input type="text" value="{{msg}}" bindinput="changeHd"/>
定义方法更新视图和data:
changeHd(e){
let msg=e.detail.value;
this.setData({msg})
}
js方法里data数据:this.data.msg
在wxml使用:{{msg}}
更新data与视图:this.setData({key1:value1,key2:value2})
注意:this指向,在wx.xxx api里面this的wx这个对象不是当前页面
Page参数
data 存储数据
onload() 当页面加载中
onPullDownRefresh 下拉刷新回调函数
onReachBottom 触底回调函数
wx.xxx
wx.stopPullDownRefresh(); 停止下拉刷新
wx.showToast({}) 轻提示
wx.request({url,method,success(){}}) 网络请求:
默认请求地址需要在后端配置
默认请求地址要求https