2013年8月12日 星期一

讓 IE可以 在CoffeeScript 取得 Class Name

以CoffeeScript寫Class要取得Class Name
通常可以用
@constructor.name
取得
但 IE並不支援JS裡的 function.name
所以可以改以
@constructor.toString().match(/^function\s(.+)\(/)[1]

沒有留言: