はヌゲットのすべてのタイプスクリプト定義ファイルを追加しましたが、何かが間違っています マイクリック機能が動作していません... 。コンソールでエラーなしでも単純なng-clickはタイプスクリプトでは機能しません
ここ私Hrmlおよびコントローラコードです
HTMLページ・
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="Scripts/angular.js"></script>
<script src="test.js"></script>
<title></title>
</head>
<body ng-app="testModule">
<div ng-controller="test">
<input type="button" ng-click="click()" value="test" />
</div>
</body>
</html>
コントローラ
angular.module("testModule", []);
class test {
constructor() { }
click() {
alert();
}
}
angular.module("testModule").controller("test", test);
おかげで仲間、..私は通常app.jsルーティングを使用して別名であり、コントローラを定義し、周りに2時間のために、このような厄介なミスを私の頭を壊しましたVMの場合は、ページにインパクトするときの基本を忘れてしまった!助けてくれてありがとう!! – sudhir
あなたもこのhttp://stackoverflow.com/questions/36482539/unable-to-access-rootscope-property-declared-in-one-controller-in-other-in-anguにお手伝いできますか? – sudhir