ここにこれの最小限のプランクがあります。
何が起こっているかは次のとおりです。
- 最初の
$http
リクエストが正常に行われました - クリック イベントがディレクティブのボタンにバインドされている
- ボタンをクリックすると、目的の機能が起動します
- その関数の
$http
リクエスト (ステップ 1 のリクエストと同じ) が起動しない
コードが短いのでこちらにも載せておきます。
テンプレート
<!DOCTYPE html>
<html ng-app="plunker">
<head>
<title>AngularJS Plunker</title>
<!-- angular source -->
<script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
<p>Click this button and an http request should log to the console</p>
<button make-request act='flip()'>Get Gaius</button>
</body>
</html>
コントローラ
app = angular.module('plunker', [])
app.controller 'MainCtrl', ($scope, $http) ->
# this function is just here to show that no errors are thrown
err = (err) -> console.log 'err', err
# this successfully gets
$http.get('gaius.json')
.then ((res) -> console.log 'init data', res.data), err
$scope.flip = ->
# although this function is called,
console.log 'called to act'
# http does not get. No request is made.
$http.get('gaius.json')
.then ((res) -> console.log 'flip data', res.data), err
app.directive 'makeRequest', ($compile) ->
scope:
act: '&'
link: (scope, element, attrs) ->
element.bind 'click', (e) -> scope.act()
データ
{
"name": "gaius baltar"
}
そのリクエストが実行されない理由は何ですか?