olofd / react-native-signalr

Use SignalR with React Native
150 stars 61 forks source link

$.param issue #35

Open ray-shawn opened 7 years ago

ray-shawn commented 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("&")
     }
PanRu commented 7 years ago

We need this too

ray-shawn commented 6 years ago

It was addressed by latest version 1.0.6