ngBind(捲曲標記)

用於呈現純文字的 AngularJS 程式碼:

<p>{{ ScopePropertyX }} and {{ ScopePropertyY }}</p>

KnockoutJS 等價物:

<p>
  <!-- ko text: ScopeObservableX --><!-- /ko --> 
  and 
  <!-- ko text: ScopeObservableY --><!-- /ko --> 
</p>

要麼:

<p>
  <span data-bind="text: ScopeObservableX"></span> 
  and 
  <span data-bind="text: ScopeObservableY"></span>
</p>