I m使用 no子和现在js。 我想获得把这一功能称作服务器的功能的全时长度,如果情况相同,则进行检查。 防止用户操纵客户的辅助功能。 可能排除可能改变的变量。 是否有办法在 j中做到这一点?
页: 1
客户
now.sendMessage() {
//Some code...
}
服务器
everyone.now.sendMessage() {
//Check that the code is the exact length
//as the function body written in the 客户side script
//To see if it has been manipulated...
if (codelength === ?) {
//execute code
} else {
//return error
}
}