有没有办法将 sock.io 实现到 chrome 扩展中?
我一直在尝试使用socket.io作为chrome扩展来实现多用户性,但是socket.io需要内联HTML脚本,而chrome扩展则不需要。无论如何,是否有可能让它发挥作用。
EX:
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io();
var form = document.getElementById('form');
var input = document.getElementById('input');
form.addEventListener('submit', function(e) {
e.preventDefault();
if (input.value) {
socket.emit('chat message', input.value);
input.value = '';
}
});
</script>
我如何在不需要内联 HTML 的情况下使用它。除了不使用 require 之外,因为它无法在 chrome 扩展中导入。
I've been trying to use socket.io for a chrome extension to implement multi userability but socket.io requires inline HTML scrips which chrome extensions don't take. Is there anyway to potentially get that to work.
EX:
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io();
var form = document.getElementById('form');
var input = document.getElementById('input');
form.addEventListener('submit', function(e) {
e.preventDefault();
if (input.value) {
socket.emit('chat message', input.value);
input.value = '';
}
});
</script>
How could I use this without needing inline HTML. Along with not using require as that doesn't work to import in a chrome extension.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论