0
我試圖尋找可能的方式來找到在服務器上顯示爲[Function]
的功能定義。如何在括號內查看功能
例:
Meteor.publish gives [Function]
on Meteor shell , but how to get the detailed description of function`
`
我試圖尋找可能的方式來找到在服務器上顯示爲[Function]
的功能定義。如何在括號內查看功能
例:
Meteor.publish gives [Function]
on Meteor shell , but how to get the detailed description of function`
`
好像作爲@codechimp說,我們可以用Function.toString()
你問一個人如何打印功能說出來?如果是這樣,我認爲你可以簡單地調用'functionName.toString()',就像'console.log('func:',myFunction.toString());'它會直接打印出來。 – CodeChimp
謝謝你:) –