gpt4 book ai didi

module - Angular.js : How to create controller in module?

转载 作者:行者123 更新时间:2023-12-04 00:47:29 24 4
gpt4 key购买 nike

我想在使用模块时定义一个 Controller :

angular.module('todoList', [], function () {

}).controller('myCtrl', function ($scope) {
return function ($scope) {
$scope.todos = [
{
text: "Hello"
}, {
text: "World"
}
]
}

})

然后我想使用模块和ccontroller:
<div ng-controller="myCtrl" ng-app="todoList">  
<li ng-repeat="todo in todos">
<span>{{todo.text}}</span>
</li>>
</div>

但它什么也不渲染,我的代码有什么问题?

最佳答案

你的 Controller 错了,没有必要有返回功能。

angular.module('todoList', [], function () {

}).controller('myCtrl', function ($scope) {

$scope.todos = [
{
text: "Hello"
}, {
text: "World"
}
]
})

演示: Plunker

关于module - Angular.js : How to create controller in module?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15737353/

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