です。最近Rxjs 5を使用すると、nx install [email protected]を使用してRxjsをダウンロードしました。ダウンロードされたコードはnode_modulesで、Observable.d.tsがRxjsフォルダに見つかりました。コンストラクタ以下のように:このキーワードは関数パラメータ
*
* @constructor
* @param {Function} subscribe the function that is called when the Observable is
* initially subscribed to. This function is given a Subscriber, to which new values
* can be `next`ed, or an `error` method can be called to raise an error, or
* `complete` can be called to notify of a successful completion.
*/
constructor(subscribe?: <R>(this: Observable<T>, subscriber: Subscriber<R>) => TeardownLogic);
私の質問は:?:サブスクライブの関数型宣言で、このキーワードの使用は何である(これは:観測、...)、活字体のような、このキーワードの使用のためのいくつかのドキュメントを持っていますここに?ありがとうございました。
ありがとうございました、ドキュメントを見つける手助けをしてください。 – IcyBrk