指令设置报错、
AngularJS实战第二章第三节双向数据绑定章节 指令设置显示Error: [$injector:unpr] Unknown provider: $scopeProvider <- $scope <- hmsDirective错误 不知如何解决?(代码结构和老师的一样)
//directives.js
bookStoreDirectives.directive('hms', ['$scope',
function($scope) {
return{
restrict:'AEC',
template:'{{name}}<input type="text" ng-model="name"/>',
scope:true //false true {}
}
}
]);