1 . change log 1.7.0 _.template 有不兼容的修改。
Underscore templates no longer accept an initial data object. _.template always returns a function now.
2 . _.extend(destination, *sources)
_.extend 不返回一个新的对象, 而是直接修改 destination.
Copy all of the properties in the source objects over to the destination object, and return the destination object.
这两个坑曾各浪费我一个小时的时间。