タグ

ブックマーク / monjudoh.hatenablog.com (1)

  • CommonJS AMDとDeferred - monjudoh’s diary

    Writing Modular JavaScript With AMD, CommonJS & ES HarmonyのModules With Deferred Dependenciesが便利なので活用してる。 初期化処理が非同期処理でrequireしてきても即使えるとは限らない場合に使う。 モジュール側ではモジュールそのものではなくてpromiseを返しておいて、モジュールの実体が完成したらresolveで渡す。 使う側はrequireしてきたpromiseのthenメソッドのcallbackでモジュールの実体を受け取って使う。 // 何らかの非同期処理を経て初期化されるモジュール define('someModule',['jquery'],function($){ var dfd = $.Deferred(); setTimeout(function(){ // モジュールとして実際

    CommonJS AMDとDeferred - monjudoh’s diary
    eller
    eller 2012/09/20
    なるほどこれは便利。早速使ってみたい。
  • 1