コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ブロックする >[ブロック] >getInputTargetBlock
指定された入力に接続されているブロックをフェッチします。
署名:
getInputTargetBlock(name: string): Block | null;
パラメータ
パラメータ |
型 |
説明 |
name |
文字列 |
入力の名前。 |
戻り値:
ブロック |null
付加された値ブロック。入力が切断されている場合、または入力が存在しない場合は null。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-25 UTC。"],[],["The `getInputTargetBlock()` method retrieves a block connected to a specified input on a given block. It accepts the input's name as a string. The method returns the attached block if one exists; otherwise, it returns `null` if the input is disconnected or doesn't exist. The return type is either a `Block` or `null`.\n"]]