是否有任何条款可以更改TogetherJS中的默认名称?我在peers.js中看到了默认名称。
最佳答案
在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>
您也可以足够简单地创建自己的随机创建者。
Example Fiddle
<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>
Link to Documents of other settings
关于javascript - 在TogetherJS中更改默认名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29161013/