0


微信小程序 ---在Vscode上编辑,微信开发者工具上预览,快速上手

微信小程序 -快速上手

第一个小程序

请添加图片描述


成功

在这里插入图片描述

导入一个已经在开发中项目

在这里插入图片描述


image-20220723105045970


在这里插入图片描述

vscode 设置

设置高亮

image-20220723112602800


image-20220723112621009

拷贝到

settings.json
"files.associations": {
  "*.wxml": "html",
  "*.wxss": "css",
},

重启 vscode 打开 wxml 文件 观察 有没有高亮

安装小程序开发插件

image-20220723113359738

小程序目录结构

-----

配置文件

全局配置 app.json

pages 字段

只能在微信开发者工具中 编辑 pages字段,按下保存 才生效!!!

pages 快速创建页面的时候 在里面创建即可

 "pages": ["pages/index/index","pages/index3/index3"],

作用

  1. 快速创建页面的 只能在微信开发者工具编辑代码才行
  2. 指定页面启动顺序

window

窗口

image-20220723143901757

  "window": {
    "navigationBarBackgroundColor": "#ffda11",
    "navigationBarTitleText": "拼多多123",
    "navigationBarTextStyle": "yellow"
  },

tabBar

image-20220723144402420


image-20220723145325739

  "tabBar": {
    "selectedColor": "#e64a19",
    "list": [
      {
        "pagePath": "pages/index/index",
        "text": "首页",
        "iconPath": "icons/home.png",
        "selectedIconPath": "icons/home-o.png"
      },
      {
        "pagePath": "pages/index3/index3",
        "text": "页面3",
        "iconPath": "icons/cart.png",
        "selectedIconPath": "icons/cart-o.png"
      }
    ]
  },

页面配置

页面.json

只能修改 全局配置中

window

字段的功能, 不需要再添加window字段

{
  "navigationBarTitleText": "页面3",
  "navigationBarTextStyle": "white"
}

模板语法

条件渲染

image-20220723155746144

列表渲染

image-20220723161305181


image-20220723163039219

事件绑定

image-20220723165827309

事件传参

image-20220723171649586

data的获取和设置

image-20220723173148298

输入框的补充

image-20220723175717101

rpx

小程序中独有 响应式px单位 规定 750rpx = 屏幕的宽度

计算屏幕适配公式

适用于 小程序 和 web

image-20220724110139506

calc

width: calc(750rpx * 100 / 375);

vscode 插件来计算

  1. 安装插件image-20220724110238888
  2. 设置设计稿的宽度 在vscode中 设置`````` // 设置设计稿的宽度 "px-to-rpx.baseWidth": 375
  3. 重启vscode
  4. 直接使用image-20220724110329000

添加客服

管理员

  1. 登录自己小程序后台,添加 微信号 - 客服image-20220724153014795
  2. 添加客服 - 添加微信号image-20220724153042133

客服人员

客服人员需要 扫码表示登录

image-20220724153223765

普通用户

使用小程序 点击 button 按钮进行 联系客服

image-20220724153736263

开发者

<!-- 
  button
   open-type 指定按钮功能
   contact 联系客服功能
 -->
<button open-type="contact">联系客服</button>

自定义组件

简单使用

创建组件

image-20220724160846965

注册组件

index16.json
{
  "usingComponents": {
    "border-image": "../../components/border-image/border-image"
  }
}

使用组件

index16.wxml
<border-image></border-image>

父组件向子组件传递数据

image-20220724163017766

父组件

index16.wxml
<border-image src="/images/1.png"></border-image>
<border-image src="/icons/home.png"></border-image>
<border-image src="/icons/home-o.png"></border-image>

子组件

border-image.js

Component({
  /**
   * 组件的属性列表
   */
  properties: {
    // 父组件传递过来的数据 src
    src: {
      // 数据类型
      type: String,
      // 默认值
      value: '',
    },
  },
});

border-image.wxml

<image mode="aspectFill" class="border-image" src="{{ src }}"></image>

子组件向父组件传递数据

image-20220724171418269

子组件

绑定点击事件

bindtap="handleTap"

border-image.wxml

<image bindtap="handleTap" mode="aspectFill" class="border-image" src="{{ src }}" ></image>

border-image.js 定义点击事件的处理函数

必须把处理函数写在 methods 对象中才行

Component({
  methods: {
    handleTap() {
    },
  },
});

点击事件触发 获取到 被点击图片的src属性 和 传递给父组件

handleTap() {
  this.triggerEvent('srcChange', this.properties.src);
},

父组件

index16.wxml 绑定 自定义事件 srcChange

<border-image bindsrcChange="handleSrcChange" src="/images/1.png" ></border-image>

index16.js 定义事件处理函数

handleSrcChange
Page({
  handleSrcChange(e) {
  },
});

在事件处理函数中 接收数据 和 设置到 父页面自己的数据中

// pages/index16/index16.js
Page({
  data: {
    src: '',
  },
  // 接收子组件传递过来的数据
  handleSrcChange(e) {
    console.log(e.detail);
    this.setData({
      src: e.detail,
    });
  },
});

补充

浏览器格式化json数据插件

image-20220727090751010


本文转载自: https://blog.csdn.net/weixin_43323097/article/details/126381589
版权归原作者 wendyymei 所有, 如有侵权,请联系我们删除。

“微信小程序 ---在Vscode上编辑,微信开发者工具上预览,快速上手”的评论:

还没有评论