is it possible to implement SignalR without the use of Jquery. I want to create a module for Titanium, but I don't know how dependent SignalR is on the DOM. Is jQuery used just for the ajax request? how hard do you think this would be?
相关问题
- How to understand EXC_BAC_ACCESS (SIGSEGV) KERN_IN
- ASP.NET display progress bar during post back
- Can I use SignalR in my Winform c# app?
- signalR and large data transfer [closed]
- Why does an idle SignalR connection have 4-6 Mbps
Um its not impossible but it'll be abit of work. you will basicly need to re-write all jquery syntax ($...) in
as regual javascript. Also you will only be able to do low level connections as the "hub" model also requires jquery.
You will probably need to include JSON.js so you can make your ajax call like this.