作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 node.js-lodash 的新手。目前我想使用这个库的 findKey()
功能。不幸的是,我收到类型错误。出了什么问题?
var objCol = {
'objA' : { 'myattrA' : 'myval1', 'myattrB' : 'myval2' },
'objB' : { 'myattrA' : 'myval3', 'myattrB' : 'myval4' }
};
var obj = _.findKey(objCol, {'myattrA' : 'myval3'});
console.log(obj);
Eclipse Enide中对应的错误信息为:
MessageBuilder : ERROR DETECTED IN event handler[39m [TypeError:
Object function (obj) { if (obj instanceof _) return obj;
if (!(this instanceof _)) return new _(obj);
this._wrapped = obj; } has no method 'findKey'] TypeError: Object function (obj) {
if (obj instanceof _) return obj;
if (!(this instanceof _)) return new _(obj);
this._wrapped = obj; } has no method 'findKey'
最佳答案
原因是OP忘记将库加载到_
变量中。
关于javascript - lodash 类型错误没有函数 findKey(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28316907/
我是 node.js-lodash 的新手。目前我想使用这个库的 findKey() 功能。不幸的是,我收到类型错误。出了什么问题? var objCol = { 'objA' : { 'my
我是一名优秀的程序员,十分优秀!