我正在构建一个基于 Firebase 的 IM 平台,我希望每个用户都有一个将他们引导到聊天室的地址。
问问题
386 次
2 回答
0
哈希。
如果我正确理解您的问题,您希望能够共享一个 URL,该 URL 将允许单击该 URL 的任何人登录到同一个聊天室。
我为我曾经制作的一个 Firebase 应用程序做了这个。您需要做的第一件事是使用.push()
方法。将房间推送到 Firebase,然后使用toString()
方法获取推送的 URL。一些快速的 JS 字符串操作 - window.location.hash = pushRef.toString().slice(x)
- 'x' 是您想要截取 URL 的任何位置。 window.location.hash
将为您设置哈希。将哈希添加到共享 URL,然后进行下一步:
当您打开页面时,您将需要一个哈希侦听器来检查是否已经存在哈希,因此$(window).bind('hashchange', function() {UpdateHash()})
进入 doc.ready 函数,然后...
function UpdateHash() {
global_windowHash = window.hash.replace("#", "");
// to assign the hash to a global hash variable
if (global_windowHash) {
// if there was already a hash
chatRef = new Firebase("[Your Firebase URL here]" + "/chatrooms/" + global_windowHash);
// chatRef is the global that you append the chat data to, and listen from.
} else {
// there wasn't a hash, so you can auto-create a new one here, in which case:
chatRef = new Firebase("[Your Firebase URL here]" + "/chatrooms/");
chatRef = chatRef.push();
window.location.hash = chatRef.toString().slice(x);
}
}
我希望这会有所帮助(并且有效:P)。如果有任何问题或问题,那就问吧!
于 2013-08-08T21:32:51.850 回答
0
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://cdn.firebase.com/v0/firebase.js"></script>
<script>
var hash; // global incase needed elsewhere
$(function() {
hash = window.location.hash.replace("#", "");;
myRootRef = new Firebase("http://xxxx.firebaseio.com");
var postingRef;
if (hash) {
// user has been given a hashed URL from their friend, so sets firebase root to that place
console.log(hash);
postingRef = new Firebase("http://xxxx.firebaseio.com/chatrooms/" + hash);
} else {
// there is no hash, so the user is looking to share a URL for a new room
console.log("no hash");
postingRef = new Firebase("http://xxxx.firebaseio.com/chatrooms/");
// push for a unique ID for the chatroom
postingRef = postingRef.push();
// exploit this unique ID to provide a unique ID host for you app
window.location.hash = postingRef.toString().slice(34);
}
// listener
// will pull all old messages up once bound
postingRef.on("child_added", function(data) {
console.log(data.val().user + ": " + data.val().message);
});
// later:
postingRef.push({"message": "etc", "user": "Jimmybobjimbobjimbobjim"});
});
</script>
</head>
这在本地对我有用。您需要将 xxxx 更改为您所在的任何 URL,并在 .slice() 位添加第一部分的许多字符。
于 2013-08-13T11:18:05.947 回答