JSFページで使用するAngularJSを学びたい。これは純粋に学習目的です。 jsfの中に単にAngularJSコードを追加しようとしました。しかし、AngularJSコードを特定していないようです。それは単に同じMy first expression: {{ 5 + 5 }}
をブラウザに入れておきます。jsfページでのAngularJSの使用方法
私のJSFページ
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js">
</script>
<body>
<div ng-app="hi" >
<p>My first expression: {{ 5 + 5 }}</p>
</div>
</body>
</html>
誰もがJSFページ内AngularJS式の出力を取得する方法を私を助けることができますか?または
UPDATE
私の実際の意図はManagebeanから、または別のJSFページからいくつかのJSONを取得し、ここに取り込むためにある私にいくつかの方向を示します。テストのために私はダミーjson構造を作成しようとしました。依然としてjsfはAngularJSコンポーネントを特定していません。その名前でモジュールが存在することが必要である角度ng-app="hi"
を初期化するためには、{{5 + 5}} ブラウザコンソールプリントMyFirstAng.xhtml:24 Uncaught TypeError: app.conntroller is not a function
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app="myAPP" ng-controller="customerctrl">
<p>My first expression: {{ 5 + 5 }}</p>
<!-- <ul>
<li ng-repeat="x in myData">
{{x.Name + ', ' + x.Age}}
</li>
</ul>
-->
</div>
</body>
<SCRIPT type="text/javascript">
var app = angular.module('myAPP',[]);
app.conntroller('customerctrl', function($scope){
// $scope.myData=[{Name:'jani',Age:'32'}];
});
</SCRIPT>
</html>
「hi」モジュールはどこに定義されていますか?インデックスページに追加しましたか? – Rachmaninoff