ASP.NET MVC コントロールヘルプ
IPromise インターフェース
ファイル
wijmo.viewer.js
モジュール
wijmo.viewer

非同期呼び出しに使用されるPromiseのインタフェースを定義します。

メソッド

メソッド

catch

catch(onRejected?: (reason?: any)): IPromise

Promiseが拒否された後に関数を呼び出します。

パラメーター
  • onRejected: (reason?: any) Optional

    The function which will be executed when a promise is rejected. This has a single parameter, the rejection reason. The return value will be passed to the next callback function.

戻り値
IPromise

then

then(onFulfilled?: (value?: any), onRejected?: (reason?: any)): IPromise

Promiseが完了または拒否された後に関数を呼び出します。

パラメーター
  • onFulfilled: (value?: any) Optional

    The function which will be executed when a promise is fulfilled. This has a single parameter, the fulfillment value. If a value is returned, it will be passed to the next callback function. If no value is returned, the original value will be passed.

  • onRejected: (reason?: any) Optional

    The function which will be executed when a promise is rejected. This has a single parameter, the rejection reason. If a value is returned, it will be passed to the next callback function. If no value is returned, the original value will be passed.

戻り値
IPromise