Example of multipart/form-data post in Objective C

Use Objective C to implement the http post method and send data with Content-Type in multipart/form-...
Mar 18, 2020 Objective C Comments 0

HttpURLConnection request array or json data

Using Java's HttpURLconnection request, GET or POST method. You can submit an array or json to the s...
Mar 16, 2020 Java HttpURLConnection Comments 0

React Native ios Error [RCTModuleMethod.mm:375] Unknown argument type '__attribute__'

QuestionThe package.json for my React Native project is as follows: "react": "16.8.3", "react-native...
Mar 11, 2020 Objective C Comments 0

Visual Studio 2019 go to the specified line shortcut

Use Visual Studio 2019 shortcut, we can locate the cursor on the specified line quickly.WindowsCtrl ...
Mar 07, 2020 IDE Comments 0

Make the raw body in jQuery Ajax

Using jQuery's $.ajax function to post data to server, The default Content-Type is application/x-www...
Mar 05, 2020 Javascript Comments 0

Parsing the URL query string into an NSDictionary using Objective C

In IOS, we want to parsing the URL query string into NSDictionary. It is convenient for us to read.E...
Mar 03, 2020 Objective C Comments 0

Delete a whole line or multiple lines using Visual Studio shortcuts

Here are several ways to remove lines of code (such as C #, C ++, etc.) using Visual Studio 2019.Win...
Mar 02, 2020 IDE Comments 0

Using koa js to respose image, json, xml, or download file

With koa, we can return various data types. We need to set the response header content-type. For exa...
Feb 27, 2020 Node.js Comments 0

Java HttpURLConnection GET Request

For Java HTTP GET requests, we have all the information in the browser URL itself.Exampleimport java...
Feb 26, 2020 Java HttpURLConnection Comments 0

HttpURLConnection post raw data

HttpURLConnection can post raw text in any format, such as text, json, xml, and html. In fact, you d...
Feb 25, 2020 Java HttpURLConnection Comments 0