我遇到了无法渲染的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 />
-->
我真的有人可以帮助我! 在此先感谢:)
答案 0 :(得分:0)
答案 1 :(得分:0)
我的错误是一样的,但问题是在一个函数之后缺少右括号:
action.setCallback(this, function(response){ /* do stuff */ }
但我的错误都没有引出那条线。修复当然是
action.setCallback(this, function(response){ /* do stuff */ });