Can I add request parameter to SockJs constructor so that it can be send to server
问题 I initialize my SockJs URL as var protocols = ['xhr-polling', 'xdr-polling', 'xdr-streaming', 'xhr-streaming']; var options = {protocols_whitelist: protocols, debug: true,server:tets}; _ws = new SockJS(url, null, options); I want to send out a request parameter , for example somesite/sockjs/info?someparam=tets" Is it possible? Documentation of SockJs refers that options is map which can have key value but i am not sure what key to use here. I verified URL at server which SockJs sends over and