オブジェクトがあるとしましょう
object = {
property=function(){};
}
私が行うconsole.log(JSON.stringify(object))
と property=function(){}
が表示されますが、オブジェクトをセッションに入れると
Session.set("object", object");
console.log(JSON.stringify(Session.get("object"))
プロパティは表示されません。なぜそれが起こるのですか?どうすれば回避できますか?