エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
To then() or to success() in AngularJS - Peterbe.com
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
To then() or to success() in AngularJS - Peterbe.com
By writing this I'm taking a risk of looking like an idiot who has failed to read the docs. So pl... By writing this I'm taking a risk of looking like an idiot who has failed to read the docs. So please be gentle. AngularJS uses a promise module called $q. It originates from this beast of a project. You use it like this for example: angular.module('myapp') .controller('MainCtrl', function($scope, $q) { $scope.name = 'Hello '; var wait = function() { var deferred = $q.defer(); setTimeout(function(