是否有任何条款可以更改TogetherJS中的默认名称?我在peers.js中看到了DEFAULT NAMES。
答案 0 :(得分:0)
在open source project they are located in the locale
files.中并编译到js
文件中。
您可以通过在TogetherJS脚本文件之前创建脚本来返回自己的脚本。如果您拥有自己的Identity Server,则效果很好。
<script>
TogetherJSConfig_getUserName = function () {return 'User Name';};
</script>
<script src="https://togetherjs.com/togetherjs-min.js"></script>
您也可以创建自己的随机创建者。
<script>
pickRandom = function (array) {
return array[Math.floor(Math.random() * array.length)];
};
var DEFAULT_NICKNAMES = [
"Mickey Mouse",
"Donald Duck",
"Snow White",
"Sir Goofey",
"Prince Charming"
];
TogetherJSConfig_getUserName = function () {return pickRandom(DEFAULT_NICKNAMES);};
</script>
<script src="https://togetherjs.com/togetherjs-min.js"></script>