未找到名为markup:// lgc:bg的模块:[markup:// c:accountManagerApex]

问题描述 投票:0回答:1

我创建了用于显示帐户的LWC,并创建了如下所示的一个Lighting Web组件和一个顶点类。HTML文件

   <template>
    <lightning-card title="Showing Account(tile)">
        <template if:true={successResponse}>
            <template for:each={accounts} for:item="account">
                <li key={account.id}>
                    <div class="slds-p-around_medium lgc-bg">
                        <lightning-tile label={account.Name} href="/path/to/somewhere">
                            <p class="slds-truncate" title={account.Phone}>Account's Phone Number is : 

{account.Phone}
                            </p>
                        </lightning-tile>
                    </div>
                </li>
            </template>
        </template>
    </lightning-card>
</template>

Js.file

import { LightningElement, wire, track } from "lwc";
import allAccount from "@salesforce/apex/AcountManager.getAccount"

export default class AccountManagerApex extends LightningElement {

  @wire(allAccount)
  accountRecrd;

  successResponse (){
    if(this.accountRecrd){
      return true;
    }
    return false;
  }

}

并且类别为:

具有共享类AcountManager {的公共]

    @AuraEnabled( cacheable = true) 
    public static List<Account> getAccount(){

        return [SELECT Id,Name,Phone,Website FROM Account Limit 10];
    }
}

[当我尝试使用VSCode部署到我的组织时,出现以下错误。

错误

force-app \ main \ default \ lwc \ accountManagerApex \ accountManagerApex.js找不到名为markup:// lgc:bg的模块:[markup:// c:accountManagerApex]

谁能告诉我如何解决此问题/

谢谢,

我创建了用于显示帐户的LWC,并创建了如下所示的一个Lighting Web组件和一个顶点类。 HTML文件

salesforce salesforce-lightning lwc
1个回答
0
投票

尝试在组件的meta.xml文件中设置<isExposed>true</isExposed>

© www.soinside.com 2019 - 2024. All rights reserved.