当前位置:   article > 正文

小程序--自定义组件

小程序--自定义组件

一、创建自定义组件

        .js中注册Component函数

        .json使用"component": true

Component({})
  1. {
  2. "component": true
  3. }

二、使用自定义组件

        全局配置、页面配置均可,全局配置就写在app.json中,页面配置就写在页面对应的json中。

        配置之后,在页面中以组件形式引入。

<page-search />
  1. {
  2. "usingComponents": {
  3. "page-search":"/components/my_search/my_search"
  4. }
  5. }

三、自定义组件样式

        小程序的样式是默认隔离(默认情况下页面的样式无法影响自定义组件的样式)的,允许外部文件修改组件样式的方法:

        1、设置addGlobalClass

                .js 文件中传入 options: { addGlobalClass: true }

                注意:尽量不要使用标签、ID、属性选择器(会影响到全局)。

  1. // components/my-nav/my-nav.js
  2. Component({
  3. // 小程序组件默认样式是隔离,addGlobalClass设置为true可允许外部修改样式
  4. options: {
  5. addGlobalClass: true
  6. }
  7. })
  1. // 组件内容
  2. <view class="navigation-bar custom-class">
  3. <view class="navigation-bar-title title-class">
  4. 自定义标题
  5. </view>
  6. </view>
  1. // 组件样式
  2. .navigation-bar {
  3. background-color: #fff;
  4. height: 88rpx;
  5. /* 顶部刘海预留 */
  6. padding-top: 100rpx;
  7. display: flex;
  8. justify-content: center;
  9. }
  10. .navigation-bar-title {
  11. font-weight: 600;
  12. }
  1. // 使用组件的页面
  2. <app-nav></app-nav>
  3. .navigation-bar {
  4. background-color: gold !important;
  5. }
  6. .nav_title {
  7. color: #fff !important;
  8. }
  1. // 使用组件的js
  2. {
  3. "navigationStyle": "custom"
  4. }

        2、设置externalClasses

        .js 文件中传入 externalClasses: [ xxx, yyy]

  1. // components/my-nav/my-nav.js
  2. Component({
  3. externalClasses: ["custom-class"],
  4. })
  1. // 使用组件的页面
  2. <app-nav custom-class="nav_title"></app-nav>
  3. .navigation-bar {
  4. background-color: gold !important;
  5. }
  6. .nav_title {
  7. color: #fff !important;
  8. }

四、自定义插槽

        小程序默认只能使用一个slot,需要多个插槽或需要使用具名插槽的时候,需要传入multipleSlots: true

        创建插槽:在组件的任一位置使用<slot />占位,slot一定要是闭合标签

  1. // components/my-nav/my-nav.js
  2. Component({
  3. options: {
  4. // 只要使用到具名插槽,都需要将multipleSlots设置为true
  5. multipleSlots: true
  6. },
  7. })
  1. <view class="navigation-bar custom-class">
  2. <view class="navigation-bar-title title-class">
  3. <slot name="left"></slot>自定义标题<slot name="right"></slot>
  4. </view>
  5. </view>
  1. <app-nav custom-class="nav_title">
  2. <text slot="left"></text>
  3. <text slot="right"></text>
  4. </app-nav>

五、组件生命周期

        1、created

        组件创建时触发,相当于vue的created,但是由于无法使用this.setData({}),所以,一般不用。 

        2、attached

        组件初始完毕时触发,相当于vue的mounted,最常使用。

  1. <view class="navigation-bar custom-class" style="padding-top: {{statusBarHeight}}px;">
  2. <view class="navigation-bar-title title-class">
  3. <slot name="left"></slot>自定义标题<slot name="right"></slot>
  4. </view>
  5. </view>
  1. // components/my-nav/my-nav.js
  2. Component({
  3. options: {
  4. multipleSlots: true
  5. },
  6. data: {
  7. statusBarHeight: 0
  8. },
  9. // 生命周期
  10. lifetimes: {
  11. created(){},
  12. attached() {
  13. const { statusBarHeight } = wx.getSystemInfoSync()
  14. console.log(wx.getSystemInfoSync())
  15. console.log(statusBarHeight)
  16. this.setData({
  17. statusBarHeight: statusBarHeight
  18. })
  19. }
  20. }
  21. })

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/140954
推荐阅读