gpt4 book ai didi

单击链接后 Angularjs 更改 View 模板

转载 作者:行者123 更新时间:2023-12-03 22:19:01 24 4
gpt4 key购买 nike

单击链接后,我试图更改 html 模板。值是 bool 值,初始值为真并加载了适当的模板,但是当值更改为假时,新模板未加载,我不知道原因。当 boolean 的初始值为 true 时,其他模板已成功加载,但在调用的方法上未成功。请帮忙。
这是我的代码:

任务控制

app.controller('TasksCtrl', ['$scope', 'TaskService', function ($scope, TaskService) {
// initialize function
var that = this;
that.newTask = true;
that.name = "My name is Nedim";

that.templates = {
new: "views/task/addTask.html",
view: "views/task/viewTask.html"
};

// load all available tasks
TaskService.loadAllTasks().then(function (data) {
that.items = data.tasks;
});

$scope.$on('newTaskAdded', function(event, data){
that.items.concat(data.data);
});

that.changeTaskView = function(){
that.newTask = false;
console.log("New task value: " + that.newTask);
};

return $scope.TasksCtrl = this;

}]);

任务.html
<!-- Directive showing list of available tasks -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<entity-task-list items="taskCtrl.items" openItem="taskCtrl.changeTaskView()"></entity-task-list>
</div>
<div class="col-sm-6" ng-controller="TaskDetailCtrl as taskDetailCtrl">
<!-- form for adding new task -->
<div ng-if="taskCtrl.newTask" ng-include="taskCtrl.templates.new"></div>
<!-- container for displaying existing tasks -->
<div ng-if="!taskCtrl.newTask" ng-include="taskCtrl.templates.view"></div>

</div>
</div>

entityList 指令
app.directive('entityTaskList', function () {
return {
restrict: 'E',
templateUrl: 'views/task/taskList.html',
scope: {
items: '='
},
bindToController: true,
controller: 'TasksCtrl as taskCtrl',
link: function (scope, element, attrs) {
}
};

});

指令模板
<ul class="list-group">
<li ng-repeat="item in taskCtrl.items" class="list-group-item">
<a ng-click="taskCtrl.changeTaskView()">
<span class="glyphicon glyphicon-list-alt" aria-hidden="true"> </span>
<span>{{item.name}}</span>
<span class="task-description">{{item.description}}</span>
</a>
</li>

{{taskCtrl.newTask}}

最佳答案

如果没有任何 plunker 或 JSFiddle,我无法确定,但这可能是 ng-if 的问题。 .我正在考虑两种解决方法。

首先是我认为更好。仅使用 1 ng-include并且只更改模板。

HTML:

<entity-task-list items="taskCtrl.items" openItem="taskCtrl.changeTaskView('view')"></entity-task-list>
...
<div ng-include="taskCtrl.currentTemplate"></div>

JS:
that.currentTemplate = that.templates.new;
...
that.changeTaskView = function(template) {
that.currentTemplate = that.templates[template];
};

或者,如果您不喜欢此解决方案,请尝试使用 ng-show而不是 ng-if .与 ng-show元素将使用 display: none; 呈现页面加载时的属性,同时使用 ng-if它们将在传递的值为 true 时呈现.

希望这对你有帮助。

关于单击链接后 Angularjs 更改 View 模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33971316/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com