Open ray-shawn opened 7 years ago
It lacks of method $.param when I am using qs , and also I saw you guys added a commit in file signalr-jquery-polyfill.js, could you please release it first, thanks in advance. cors: true
+ }, + param: (source) => { + let array = [] + for(var key in source) { + array.push(encodeURIComponent(key) + "=" + encodeURIComponent(source[key])) + } + return array.join("&") }
We need this too
It was addressed by latest version 1.0.6
It lacks of method $.param when I am using qs , and also I saw you guys added a commit in file signalr-jquery-polyfill.js, could you please release it first, thanks in advance. cors: true