我是初学者。这些是从示例中复制的。他们现在不能工作。
<html ng-app>
<head>
<script src="angular.min.js"></script>
<script >
var app = angular.module("App", []);
app.directive("antest", function(){
debugger;
return {
restrict: "AE",
templateUrl: "b.html",
replace: true
};
});
</script>
</head>
<body>
<antest></antest>
</body>
</html>
答案 0 :(得分:2)
您已将您的模块命名为&#34; App&#34;。所以你需要ng-app =&#34; App&#34;它的工作原理。