作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Kanso.js 是一个让您轻松构建沙发应用程序的工具。正如可以在文档中看到的那样,它包括 underscore.js 模块。
但是我怎样才能在 ListView 中准确地使用 underscore.js 方法呢?我必须先要求它吗?例如,我一直在使用 union 方法:
var newArray = oldArray1.union(oldArray2)
var newArray = union(oldArray1, oldArray2)
最佳答案
先require
underscore
文件顶部的模块。如果您在 dev
Kanso 的分支(版本 0.0.8),它看起来像这样:
_ = require('underscore')._;
_ = require('kanso/underscore')._;
union
从下划线对象
var newArray = _.union(oldArray1, oldArray2);
underscore
作为您的 kanso.json 中的依赖项文件。"dependencies": {
...
"underscore": null
}
kanso install
在您的项目目录中。 underscore
在一个模块中。_ = require('underscore')._;
关于couchdb - 在 Kanso 中使用 underscore.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8183751/
写了很多django应用,习惯了扩展unittest.TestCase并运行 python manage.py test app_name .有没有类似简单的单元测试方法Kanso应用?请提供一个最小
Kanso.js 是一个让您轻松构建沙发应用程序的工具。正如可以在文档中看到的那样,它包括 underscore.js 模块。 但是我怎样才能在 ListView 中准确地使用 underscore.
正在关注 this帖子,我看了一下 kanso。 从中我了解到,如果人们需要复杂的模块,他们并不害怕将它们加载到数据库上下文中,这给了我很大的鼓励。 所以我尝试了汉索。它给了我一些暗示不成熟的麻烦——
我正在配置 Kleks我想安装 kanso根据 this github article . 我成功安装了 npm 并尝试安装 kanso 后记,这是使用的命令: stratos@Dev-PC:~$ s
我是一名优秀的程序员,十分优秀!