Salesforce Lightning:init期间出错[无法读取undefined的属性'apply']

时间:2016-11-02 17:26:52

标签: salesforce sfdc aura.js

我遇到了无法渲染的Lightning组件。我立即收到一个奇怪的错误:此页面有错误。您可能只需要刷新它。 init期间出错[无法读取属性'apply'of undefined]。

我现在已经被困了很长时间,无法弄清楚代码有什么问题。在这里你可以看到我的代码:

组件:

<aura:attribute name="recordId" type="String" default='500b000000cOxah' />
<aura:attribute name="case" type="Case" />
<aura:attribute name="tasks" type="Task[]"/>

<aura:handler name="init" value="{!this}" action="{!c.doInit}"/>

<c:CaseActivityTrackerHeader />

<aura:iteration items="{!v.tasks}" var="task">
    <c:CaseActivityTrackerTimeline task="{!task}"/>
</aura:iteration>

<aura:iteration items="{!v.tasks}" var="task">
    <h3>{!v.task.Subject}</h3>
</aura:iteration>

<h3>{!v.case.Subject}</h3>
<h3>{!v.recordId}</h3>

({
doInit: function(component, event, helper) {
    //helper.getCase(component, event);
    //helper.getTasks(component, event);
    // Set the attribute value. 
    // You could also fire an event here instead.
    component.set("v.recordId", "controller init magic!");
}

})

应用

<aura:application extends="force:slds">

<c:CaseActivityTracker />

<!-- 
<c:camping />
-->

我真的有人可以帮助我! 在此先感谢:)

2 个答案:

答案 0 :(得分:0)

发现它!它是在辅助类中(我现在意识到我没有在这里发布)并且它是一个变量&#39; case&#39; SFDC被解释为sobject案例而不是var case。通过将var名称更改为&#39; Case&#39;问题已修复

答案 1 :(得分:0)

我的错误是一样的,但问题是在一个函数之后缺少右括号:

action.setCallback(this, function(response){ /* do stuff */ }

但我的错误都没有引出那条线。修复当然是

action.setCallback(this, function(response){ /* do stuff */ });