我有 2 个 CakePHP 页面。他们都使用angularjs。这是一个片段。
/items/items.ctp
<div id="ng-app" ng-app>`
<div ng-controller="ItemController">
<a href="#" ng-click="showAddPopup">Add</a>
</div>
</div>
函数 showAddPopup 定义如下
$scope.showAddPopup = function() {
$.colorbox({href:'/items/add/' + $scope.order.id,open:true,close : "x", onClosed:function(){}});
}
/items/add.ctp
<div id="ng-app" ng-app>`
<div ng-controller="AddController">
<h2>{{order.label}}<h2>
</div>
</div>
现在,当我从项目视图中单击添加链接时,我会看到一个包含 add.ctp 内容的弹出窗口。但问题是,不是显示订单标签说“我的订单”,而是显示 h2 标签{{order.label}}
当我从不使用 angularjs 的页面打开添加视图时,我得到了正确的结果。我究竟做错了什么。请帮忙。我已经为此浪费了很多天。