Visual Force页面未调用闪电组件

时间:2018-11-02 06:04:13

标签: salesforce apex visualforce salesforce-lightning salesforce-communities

我已经创建了一个托管beta软件包用于测试目的,并将其安装在新创建的新组织中,并且在尝试预览正在调用闪电组件的visualforce页面时,闪电组件未加载并显示错误在控制台“无法加载资源:服务器响应,状态为404(未找到)”中。而且,当我在旧组织上安装相同的软件包时,该软件包是在visualforce页面运行正常之前约1个月创建的。

<apex:page controller="abc" showHeader="false" standardStylesheets="false" sidebar="false" applyHtmlTag="false" applyBodyTag="false" docType="html-5.0">
<apex:includeLightning />
<html xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" lang="en" style="height:90%">
    <head>
        <meta charset="utf-8" />
        <meta http-equiv="x-ua-compatible" content="ie=edge" />
        <title>Display Data</title>
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <apex:slds />
    </head>
    <body style="height:100%">
        <!-- REQUIRED SLDS WRAPPER -->
        <div class="slds-scope" style="height:100%" id="data">
        </div>
    </body>
    <script>
    $Lightning.use("{!namespace}:lightningApp", function() {
        $Lightning.createComponent("{!namespace}:lightningComponent",
                                   "data",
                                   function(cmp) {
                                       // do some stuff
                                   });
    });
    </script>
</html>

0 个答案:

没有答案