完成ng-repeat最后一项事件后,页面仍在加载

时间:2016-01-20 04:21:21

标签: jquery angularjs

如果我在 Dim disconn As New SqlConnection("Server = EURIZZE-PC;Database = INTERTRANS;Integrated Security = SSPI;") Dim retval As String Dim arRetval As String() Using cmd1 As New SqlCommand("", disconn) With cmd1 .CommandText = "SELECT Status_ +'|'+cast( COUNT(Status_)as varchar) FROM ISSUANCE WHERE Status_ = 'Draft' GROUP BY Status_" retval = .ExecuteScalar End With End Using If retval <> String.Empty Then arRetval = retval.Split("|") count.Text = arRetval(0) & " " & arRetval(1) End If 项目中添加了更多带有表格的文本,则即使在呈现最后一个ng-repeat项目后,该页面也会显示加载状态。当然,我无法向下滚动或看到悬停按钮,或者在页面停止时无法执行任何操作。我在本地项目的复杂代码中遇到了这个问题。

我需要显示加载页面,直到真正完成加载页面,而不是在ng-repeat中的最后一项之后。

Check the plnkr here.

1 个答案:

答案 0 :(得分:0)

为指令和范围添加$ timeout。$ last event:

ng-repeat