我正在使用 nodejs 和 nowjs。我想获取在服务器上调用函数的函数的主体长度并检查它是否相同。防止用户操纵客户端功能。并且可能排除可能发生变化的变量。有没有办法在javascript中做到这一点?
例如
客户
now.sendMessage() {
//Some code...
}
服务器
everyone.now.sendMessage() {
//Check that the code is the exact length
//as the function body written in the clientside script
//To see if it has been manipulated...
if (codelength === ?) {
//execute code
} else {
//return error
}
}