react-native-signalr icon indicating copy to clipboard operation
react-native-signalr copied to clipboard

$.param issue

Open ray-shawn opened this issue 8 years ago • 2 comments

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("&")
     }

ray-shawn avatar Sep 14 '17 03:09 ray-shawn

We need this too

PanRu avatar Sep 30 '17 07:09 PanRu

It was addressed by latest version 1.0.6

ray-shawn avatar Nov 28 '17 01:11 ray-shawn