使用 Angularjs Bootstrap UI,我创建了一系列选项卡/窗格。我使用以下控制器来保存 $scope.panes 的详细信息
function imageGalleryCtrl ($scope, images)
{
$scope.panes = [
{ title:"Home", content:"create.php", active: true },
{ title:"Upload", content:"Dynamic content 2"}
];
}
选项卡/窗格的 HTML 如下所示:
<pane active="pane.active" heading="{{pane.title}}" ng-repeat="pane in panes">
<div ng-include="pane.content"></div>
</pane>
</tabs>
选项卡正常工作并显示。当前错误是 404,未找到。如果我输入绝对 URL,我会得到 403,禁止......
声明包含路径的正确方法是什么?