我想從匿名函數訪問@cols,它即將到來,因爲未定義(在第二行),即使它被定義。從anom訪問實例變量。函數在咖啡腳本
csv = require 'csv' class Inventory constructor: (@file) -> @cols = {} #Read the file and push to cols csv(). fromPath(@file,columns: true). on 'data', (d,index)-> #push to cols console.log @cols inventory = new Inventory(__dirname + '/sample.csv')
什麼是「ANOM功能」代表什麼? – epidemian