我尝试使用 DurandalJS 在我的SPA项目上实施 autobahn 0.9.5 。
var ab = require('autobahn');
live = new ab.Connection(
{
url: 'ws://localhost:8080',
realm: 'realm1'
});
live.onopen = function(session, details)
{
console.log('Autobahn open successfully!', session);
};
live.onclose = function(reason, details)
{
console.log('Autobahn connection lost', reason + ' - ' + details);
};
live.open();
我在firefox和Chrome浏览器上收到错误
Firefox:
InvalidAccessError: A parameter or an operation is not supported by the underlying object
websocket.close(code, reason);
铬:
WebSocket connection to 'ws://localhost:8080/' failed: Error during WebSocket handshake: Sent non-empty 'Sec-WebSocket-Protocol' header but no response was received
我不知道发生了什么......
在我开始之前 - 高速公路0.9.5
我在 test.html 上编写了一个简单的测试,看看后端设置的所有内容是否正确。
但是在这个测试中,我目前使用 autobahn 0.8.2
的test.html
<script src="http://autobahn.s3.amazonaws.com/js/autobahn.min.js"></script>
<script>
var conn = new ab.Session(
// Websocket host
'ws://localhost:8080',
// Callback on connection established
function() {
// Once connect, subscribe to channel
conn.subscribe('3', function(topic, data) {
console.log(topic, data);
});
},
// Callback on connection close
function() {
console.warn('WebSocket connection closed');
},
// Additional AB parameters
{'skipSubprotocolCheck': true}
);
</script>
这个测试完全符合我的需要,但在我尝试在实际项目中实现之后,我无法使用requireJS加载高速公路0.8.2 ,它一直给我一个错误 ab未定义。
根据autobahn getting started,我真的不明白发生了什么,它应该有效。
以下是我在main.js(requirejs路径和shim配置)上定义它的方法
requirejs.config({
paths: {
'autobahn' : 'https://autobahn.s3.amazonaws.com/autobahnjs/latest/autobahn.min',
'when' : 'https://cdnjs.cloudflare.com/ajax/libs/when/2.7.1/when'
},
shim: {
'autobahn': {
deps: ['when']
}
}
});
希望有人可以帮助我,我真的很想让它发挥作用!
任何帮助将不胜感激! 感谢
答案 0 :(得分:1)
可能迟到了,但需要进一步参考。
这可能不是SO问题的完整答案。
首先,应该为AutobahnJS v0.8.2(支持WAMPv1)或AutobahnJS v0.9.5(WAMPv2)编写所有内容。
检查API文档。
WAMP v1
var conn = new ab.Session(wuri, onOpenCallback, onCloseCallback, options);
WAMP v2
new autobahn.Connection({url: wuri, realm: yourRealm});