How to use Component components in mini programs? Practical guide sharing

青灯夜游
Release: 2021-10-11 11:01:16
forward
5917 people have browsed it

How to use the Component component in the mini program? The following article will share with you a comprehensive and practical guide to the custom component of the mini program. I hope it will be helpful to you!

How to use Component components in mini programs? Practical guide sharing

In the mini program, if we want to abstract the functional modules within the page andreusein different pages, we can use it Custom components, custom components can split complex pages into multiplelow couplingmodules, which is not only convenient to use, but also helps our code maintenance. [Related learning recommendations:小program development tutorial]

Preface

You will gain from this article

  • How to use mini programs Defining components

  • Various value transfers between custom components

  • Using slots in custom components

  • Demining, the mini program in this article refers to the WeChat mini program (but other mini programs should have similar ideas)

  • Demining, this article mainly The content is about various uses of custom components, not teaching you how to package components!

Basic preparation (can be ignored)

Add a new folder

First create a folder specifically for custom components in the root directory ( The folder name is arbitrary and the location is arbitrary)

How to use Component components in mini programs? Practical guide sharing

Create a new Component file

Then in the mini program editor, right-click and create a new Component

How to use Component components in mini programs? Practical guide sharing

Why do we need to mention this step specifically?

I don’t know if there are any friends who, like me, have only used the small program development tool as a preview tool, and then used other editors for development.

How to use Component components in mini programs? Practical guide sharing

Later I discovered that if you create a Component or Page directly in the mini program, it will create all four files in one go, and the content template will also be filled in, so now developers In addition to previewing the tool, I also use it to create new files.

How to use Component components in mini programs? Practical guide sharing

Sample background description

We will write a simple component example using the module segmentation title in the figure below as an example (just a blind example)

How to use Component components in mini programs? Practical guide sharing

How to introduce custom components?

Not much to say about creation, just follow the above [New Component file]. If you create it manually, don’t forget to declare it in the json file (it is included by default in the new mini program development tool)

{ "component": true }
Copy after login

Introduce component methods

How to use Component components in mini programs? Practical guide sharing

Make a reference statement in thejsonfile of the page

 { "usingComponents": { "x-title": "/components/title/title" } }
Copy after login

In the page Inwxml, use custom components like basic components (the name must be consistent with the declaration)

 
Copy after login

How to pass the value?

Parent component passes value to child component

You can see that we have written down the content of the title above, but in actual use we definitely need to pass in different titles according to different modules. content, so we need to use value transfer between parent and child.

The parent passes the value to the child

   
Copy after login

The child receives the value passed by the parent

 properties: { titleText:{ type:String, value:'其他' } },
Copy after login

How to use Component components in mini programs? Practical guide sharing

The child component passes the value to the parent component

Modify the component slightly and add a new details operation button. Currently, multiple modules have been obtained through looping. Now I want to click on the details. , the child passes the ID of the current module to the parent.

How to use Component components in mini programs? Practical guide sharing

The child component passes parameters to the parent component

 详情
Copy after login
 gotoDetail(){ this.triggerEvent('gotoDetail',this.data.titleId) }
Copy after login

How to use Component components in mini programs? Practical guide sharing

The parent component receives Parameters of the child component

 
Copy after login
 //通过e.detail获取子组件传过来的参数 gotoDetail(e){ const id = e.detail console.log('从子组件接收到的id',id) }
Copy after login

How to use Component components in mini programs? Practical guide sharing

The parent calls the method of the child component

The child component defines a method

 childMethod(){ console.log('我是子组件的方法') },
Copy after login

Parent First, give the sub-component an id

  调用子组件方法
Copy after login

Get the component in the life cycle of the js page, and then save it to our custom variable titleCom. Then you can directly call the method in the sub-component

 onReady(){ this.titleCom = this.selectComponent("#titleCom"); }, triggerChildMethod(){ this.titleCom.childMethod(); }
Copy after login

1How to use Component components in mini programs? Practical guide sharing

如果this.selectComponent()返回为null

1、检查wxml定义的id和js使用的是否一致;

2、自定义组件是否渲染,例如你使用了wx:if,导致组件还未渲染

传值官网相关文档:

https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/events.html

在自定义组件中使用插槽(slot)

我们上面在自定义组件中加了【详情】查看的操作按钮,但是有的地方我们可能并不想用文字,想改成图标或者按钮,当某处放置的节点内容不确定时,我们就可以使用插槽来处理。

插槽就相当于在子组件中放一个占位符,这样父组件就可以向子组件填充html了。

1How to use Component components in mini programs? Practical guide sharing

单插槽

1How to use Component components in mini programs? Practical guide sharing

在子组件加入插槽

 
Copy after login

父级即可在组件内任意填充内容,比如插入一个图标(如果子级没有加slot,及时填充了html也不会被渲染)

     
Copy after login

1How to use Component components in mini programs? Practical guide sharing

多插槽

1How to use Component components in mini programs? Practical guide sharing

先在子组件的js开启一下多slot支持

 options: { multipleSlots: true // 在组件定义时的选项中启用多slot支持 },
Copy after login

子组件加上插槽需要给插槽加上名字

  
Copy after login

父级使用

     更多 
Copy after login

1How to use Component components in mini programs? Practical guide sharing

注意

问:为什么加了插槽,却没有反应?

1How to use Component components in mini programs? Practical guide sharing

虽然我只在【子组件】加了1个插槽,但是因为加上了名字,所以同样需要在【子组件】的js里开启多插槽

options: { multipleSlots: true // 在组件定义时的选项中启用多slot支持 },
Copy after login

插槽官网文档:

https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html

Component的生命周期

Component({ lifetimes: { attached: function() { // 在组件实例进入页面节点树时执行 }, detached: function() { // 在组件实例被从页面节点树移除时执行 }, }, //组件所在页面的生命周期 pageLifetimes: { show: function() { // 页面被展示 }, hide: function() { // 页面被隐藏 }, resize: function(size) { // 页面尺寸变化 } } // 以下是旧式的定义方式,可以保持对 <2.2.3 版本基础库的兼容 attached: function() { // 在组件实例进入页面节点树时执行 }, detached: function() { // 在组件实例被从页面节点树移除时执行 }, // ... })
Copy after login

生命周期官网:

https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/lifetimes.html

更多编程相关知识,请访问:编程视频!!

The above is the detailed content of How to use Component components in mini programs? Practical guide sharing. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:juejin.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!