WeChatアプレットがエラーを報告しました:コンポーネントがパス「components / comp /comp.js」に見つかりません

完全なエラー

jsEnginScriptError:
Component is not found in path "components/comp/comp.js" (using by pages/index/index); onAppRoute
Error: Component is not found in path "components/comp/comp.js" (using by pages/index/index)
	in e(...)
	...

エラーコード(json)

{
    
    
  "backgroundTextStyle": "light",
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "WeApp",
  "navigationBarTextStyle": "black",
  "usingComponents": {
    
    
    "MyComp": "../../components/comp/comp.js"
  }
}

解決する

それ.js削除し、次のように置き換えます../../components/comp/comp

{
    
    
  "backgroundTextStyle": "light",
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "WeApp",
  "navigationBarTextStyle": "black",
  "usingComponents": {
    
    
    "MyComp": "../../components/comp/comp"
}

おすすめ

転載: blog.csdn.net/write_1m_lines/article/details/104180468