這是主要頁面的內容:爲什麼AngularJS不包含這個簡單的例子?
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
</head>
<body>
<h1>Hello</h1>
<div ng-include="'goodbye.html'" ></div>
</body>
</html>
這是goodbye.html的內容:
<h1>Goodbye</h1>
這只是表明了 「你好」,不加上「再見」。爲什麼不包含goodbye.html?
在您的示例中,您實際上沒有引導角。你的JavaScript代碼是什麼樣的? –
@PankajParkar立即檢查。 –