AngularJS代码无法在文件夹中的本地主机上使用chrome

我在我的ubuntu 17.04上运行简单的Hello World程序(使用AngularJS 1.6)从本地主机上运行,​​本地主机地址是http://localhost/js/angular/4/并且该程序在谷歌浏览器中不工作,相同的代码运行良好在Firefox上,如果我将相同的文件夹重命名为另一个数字,或者如果我将相同的代码保存在另一个文件夹中,它似乎工作得很好。 可能是这种奇怪行为的原因,因为在搜索解决方案时,我无法在Internet上找到与此类似的任何内容。

var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
    $scope.message = "Hello World";
});
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body ng-app="myApp">

<div ng-controller="myCtrl">
{{ message}}
</div>

</body>
</html>

ng-appng-controller不能在同一个元素上。

链接地址: http://www.djcxy.com/p/88025.html

上一篇: AngularJS code not working on chrome on localhost in a folder

下一篇: How to accommodate huge URL in Internet explorer?