Convert Javascript Object (incl. functions) to String

后端 未结 10 1058
你的背包
你的背包 2020-12-29 21:35

Hey, Im trying to convert specific javascript objects to a String. So far I\'m working with json2.js. As soon as my Object contain functions, those functions are stripped. I

10条回答
  •  猫巷女王i
    2020-12-29 21:58

    functionName.toString() will return a string of all the function code. I cut is after the name.

    var funcString = CurrentButton.clickFunc.toString();
    console.log("calling:" + funcString.substr(0, funcString.indexOf(")")-1));
    

提交回复
热议问题