定義と使用法
ng-include
ディレクティブは、外部ファイルからHTMLを含んでいます。
含まれるコンテンツは、指定された要素ののchildNodesとして含まれます。
値はng-include
属性も、ファイル名を返す式を指定できます。
デフォルトでは、インクルードされたファイルは、文書と同じドメインに配置する必要があります。
構文
< element ng-include=" filename " onload=" expression "
autoscroll=" expression " ></ element >
NG-includeディレクティブも要素として使用することができます。
<ng-include src=" filename " onload=" expression "
autoscroll=" expression " ></ng-include>
すべてのHTML要素によってサポートされています。
パラメーター値
Value | Description |
---|---|
filename | A filename, written with apostrophes, or an expression which returns a filename. |
onload | Optional. An expression to evaluate when the included file is loaded. |
autoscroll | Optional. Whether or not the included section should be able to scroll into a specific view. |