我在前端部分有stomp连接问题。这是一个REST API - 后端 - > RoR(Jruby),带扭矩箱 - 前端 - > AngularJS。
对于Angular我使用https://github.com/beevelop/ng-stomp
的index.html
<script src="bower_components/ng-stomp/dist/ng-stomp.standalone.min.js"></script>
app.js
angular
.module('rlmuxApp', [
'ngStomp'
])
控制器
angular.module('rlmuxApp').
controller('RequestDetailsCtrl', function ( $log, $stomp, $scope) {
$stomp.setDebug(function (args) {
$log.debug(args)
})
function errorCallback() {
console.log('sd');
}
$stomp.connect('http://localhost:8675/stomp', {
authenticity_token: "IUuQwSA/uqSZ+CSqgCcg6H+tkRVJ2TF7pl3Q1/aY16k=",
destination: "/stomplets/eventable/update/request/id=3",
id: 'sub-2'
}, errorCallback)
控制台
打开Web Socket ...
哎呦!与...失去联系 http://localhost:8675/stomp request_details_controller.js:19 sd