2
在Meteor中,如果我在反應組件和console.log中輸入nod這樣的npm,在以下位置輸入「lodash」,它總是會在組件中定義爲undefined。同樣的事情也發生在一瞬間。我在我的智慧結束,因爲從文檔說什麼我認爲這是可能的。這是可能的,如果有的話,我在這裏錯過了什麼?任何幫助深表感謝。在客戶端導入npm模塊React組件
import React from 'react'
import lodash from 'lodash'
console.log(lodash) // lodash is found just fine
export default class SomeComponent extends React.Component {
constructor(props) {
super(props)
this.someFunction = this.someFunction.bind(this)
}
someFunction() {
console.log(lodash) // Throws error that lodash is undefined.
}
}
之所以如此,是離奇。如果你在一些函數中執行調試器,你能夠訪問lodash嗎? – sturoid
將someFunction改爲:'console.log(JSON.stringify(lodash.partition([1,2,3,4],n => n%2)))'產生日誌:'[[1,3], [2,4]]' – JeremyK
如果你想要在控制檯上使用lodash,你可能需要:在控制檯上試試'var lodash = require('lodash')' – JeremyK