从浏览器查看时,ng-repeat代码被注释掉了

时间:2015-07-15 09:42:52

标签: angularjs angularjs-directive angularjs-ng-repeat

我在加载期间看到范围元素 private const int WM_NCACTIVATE = 0x86; [DllImport("user32.dll", CharSet = CharSet.Auto)] public static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam); protected override void WndProc(ref Message m) { // The popup needs to be activated for the user to interact with it, // but we want to keep the owner window's appearance the same. if ((m.Msg == WM_NCACTIVATE) && !_activating && (m.WParam != IntPtr.Zero)) { // The popup is being activated, ensure parent keeps activated appearance _activating = true; SendMessage(this.Owner.Handle, WM_NCACTIVATE, (IntPtr) 1, IntPtr.Zero); _activating = false; // Call base.WndProc here if you want the appearance of the popup to change } else { base.WndProc(ref m); } } 具有必要的数据。

在我使用ng-repeat打印信息的视图中,我看到它没有显示在浏览器中。

$scope.docDetails

当我查看HTML时,我看到ng-repeat代码被注释掉了

我哪里错了?

0 个答案:

没有答案