angular controller-scope 的问题

下面这段代码:
{{message}}

/**
*CreatedbyGlacieron2015/7/19.
message-controller-scope.js
*/
functionMessageController($scope){
$scope.message="Thisisamodel.";
}
显示结果是{{message}};应该显示是Thisisamodel.
为什么显示不成功了?
烙印99
浏览 335回答 2
2回答

胡子哥哥

孩子,你得angular对象都没有加载进去!!!angular.module("app",[]).controller("MessageController",function($scope){$scope.message="Thisisamodel.";});

收到一只叮咚

我想,问题可能出在这句,你看看路径是不是对的如果angularJS能够引入,那么针对ng-app="app"是可以自己扫描运行的,那么{{message}}你看到的就不是{{message}}了,要么是'Thisisamodel.',要么就是空白一片,要么就是console的报错.
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript