微信小程序——自定义组件时,编译报`Component is not found in path '...'`

问题描述:

在微信小程序中自定义组件时,编译报Component is not found in path ‘...‘

 

解决方法:

确认自定义的组件的js文件是否存在Component构造器

Component({

});

 

确保要引入的页面的json文件中的usingComponentspath是正确的:

这里的路路径有两种写法:

{
    "usingComponents": {
    "watermark" : "/components/watermark/watermark"
  }
}

 

{
   "usingComponents": {
   "watermark": "../../components/watermark/watermark"
  }
}

 

微信小程序——自定义组件时,编译报`Component is not found in path '...'`

上一篇:python 爬取微信公众号文章


下一篇:Python随机生成手机号码小程序