收藏
回答

Component is not found in path "plugin://chatbot/c

问题类型 插件 AppID 插件版本号 AppID 操作系统 微信版本 基础库版本
Bug wx738958e0f4c894f9 1.1.0 wxadbae3dfd71bfa4e iOS 6.5.3 2.11.3

都按照要求配置了,报这个是什么原因呢

VM3902 WAService.js:2 SystemError (jsEnginScriptError)

Component is not found in path "plugin://chatbot/chat" (using by "pages/index/index")

Error: Component is not found in path "plugin://chatbot/chat" (using by "pages/index/index")

回答关注问题邀请回答
收藏

1 个回答

  • 小言子
    小言子
    2021-07-23

     app.json 中配置

    "plugins": {
    	"chatbot": {
    		"version": "1.1.0",
    		"provider": "wx738958e0f4c894f9"
    	}
    },
    


    页面的json配置

    {
        "usingComponents": {
          "chat": "plugin://chatbot/chat"
        }
     }
    


    在页面的配置json内进行配置 "plugin://chatbot/chat" 还有 var plugin = requirePlugin("chatbot"); chatbot 名字 与 app.json 中配置 中的插件名字一致,

    而官方文档 app.json插件名是 myPluginrequirePlugin也是 requirePlugin("myPlugin");页面的配置json内 却是 "plugin://chatbot/chat" ,官方文档不够严谨

    2021-07-23
    有用
    回复
登录 后发表内容