9

我正在比较这些框架以在客户端进行一些计算。我真的很喜欢AngularJS网站上的示例。我想知道网站上的任何bone.js 或 knockout.js 专家是否会在他们各自的框架中重新创建该示例。

这是它的JSFiddle

小提琴代码:

<table ng:init="invoice= {items:[{qty:10, description:'gadget', cost:9.95}]}">
  <tr>
    <th>Qty</th>
    <th>Description</th>
    <th>Cost</th>
    <th>Total</th>
    <th></th>
  </tr>
  <tr ng:repeat="item in invoice.items">
    <td><input name="item.qty" value="1" size="4" ng:required ng:validate="integer"></td>
    <td><input name="item.description"></td>
    <td><input name="item.cost" value="0.00" ng:required ng:validate="number" size="6"></td>
    <td>{{item.qty * item.cost | currency}}</td>
    <td>[<a href ng:click="invoice.items.$remove(item)">X</a>]</td>
  </tr>
  <tr>
    <td><a href ng:click="invoice.items.$add()">add item</a></td>
    <td></td>
    <th>Total:</th>
    <td>{{invoice.items.$sum('qty*cost') | currency}}</td>
  </tr>
</table>

<!-- 
  Workaround for jsfiddle to pass in ng:autobind
  http://doc.jsfiddle.net/basic/introduction.html#css
-->
<script src="http://code.angularjs.org/angular-0.9.10.min.js" ng:autobind></script>

<style>
table th {
  font-weight: bold;
}
table td {
  padding: 0.3em;
}
4

2 回答 2

21

还可以查看https://github.com/addyosmani/todomvc,它展示了一个用所有流行框架编写的标准 TODO 应用程序。

于 2011-09-14T19:55:33.737 回答
4

在这里你去knockoutjs >

http://jsfiddle.net/neebz/YbwzJ/

我可能有偏见,但它比角度/骨干更具结构性。

如果您有任何问题,请告诉我。

我认为您可以自己进行一些 NaN 检查。

于 2011-03-07T18:44:41.953 回答