使用Eclipse Web Page Editor和AngularJS进行预览无法正常工作

时间:2015-12-14 15:02:43

标签: angularjs eclipse

我目前正在尝试使用AngularJS启动并运行Eclipse网页编辑器中的预览功能。不幸的是,当我尝试运行提供的代码时,没有任何反应(参见附图)。 它似乎运行here

代码在每个Web浏览器中运行 - 所以问题是为什么它不能在"预览选项卡" Eclipse网页编辑器?有什么想法吗?

我的设置:

  • 适用于Web开发人员的Eclipse Mars.1版本(4.5.1)
  • AngularJS Eclipse 1.1



<!DOCTYPE html>
<html ng-app>
	<head>
		<meta charset="UTF-8">
		<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
		<title>Insert title here</title>
	</head>
	<body>
		<div>
			<label>Name:</label> 
			<input type="text" ng-model="yourName" placeholder="Enter a name here">
			<hr>
			<h1>Hello {{yourName}}!</h1>
		</div>
	</body>
</html>
&#13;
&#13;
&#13;

enter image description here

0 个答案:

没有答案