0

我正在尝试从外部页面使用 Salesforce 组件。我继续本手册: https ://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/lightning_out_public_apps.htm 但仍然有错误并且没有呈现任何内容。我有 inline.js 和 bootstrap.css 的 404。

我的代码:

<!DOCTYPE html>
 <html lang="en">
 <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
     <title>LIG Boilerplate</title>
     <script src="https://custom-salesforce-domain/externalApps/lightning/lightning.out.js"></script>
     <script>

    let inputVariables = [];
    $Lightning.use("c:SGMVAOutside", function() {
        $Lightning.createComponent("lightning:flow", {},
            "container",
            function (component) {
                component.startFlow("SG_MVA_Triage_Flow_Lightning_Out", inputVariables);
            })
        ;},
        'https://custom-salesforce-domain/externalApps'
    );

</script>
</head>
 <body>
    <p>It works !!!</p>
     <div id='container'>

     </div>

 </body>
 </html>

社区被创建。社区是公开的。社区可以访问应用程序。

什么可能是问题来源?

4

1 回答 1

0

尝试以下操作:

首先,您需要实现一种机制来在页面加载时触发脚本。使用以下,

<script>
function init(){
    let inputVariables = [];
    $Lightning.use("c:SGMVAOutside", function() {
        $Lightning.createComponent("lightning:flow", {},
            "container",
            function (component) {
                component.startFlow("SG_MVA_Triage_Flow_Lightning_Out", inputVariables);
            })
        ;},
        'https://custom-salesforce-domain/externalApps'
    );
}
</script>
</head>
 <body onload="init()">
    <p>It works !!!</p>
     <div id='container'>

     </div>

 </body>

对于第 8 行,验证您使用的域格式是否正确,请参见下面的示例。

沙盒使用:
<script src="https://[custom-salesforce-domain-without-instance-number].lightning.force.com/lightning/lightning.out.js">

IE
<script src="https://FictiousCompany--SandboxName.lightning.force.com/lightning/lightning.out.js">

生产用途:
<script src="https://login.salesforce.com/lightning/lightning.out.js">

第 17 行(不包括空行),验证您使用的格式是否正确,请参见下面的示例。

沙盒和生产用途: 'https://[custom-salesforce-domain-with-instance-info]/[CommunityName]', [If applicable, AuthToken]);

没有 AuthToken 的 IE
'https://Domain.cs59.force.com/DemoCommunity', );

带有 AuthToken 的 IE
'https://Domain.cs59.force.com/DemoCommunity', 12345789ABCDEF );

我希望这有帮助!

于 2018-09-05T20:53:45.763 回答