urlencoding in Dart

UrlencodeDart

Urlencode Problem Overview


Is there a function to do urlencoding in Dart? I am doing a AJAX call using XMLHttpRequest object and I need the url to be url encoded.

I did a search on dartlang.org, but it didn't turn up any results.

Urlencode Solutions


Solution 1 - Urlencode

var uri = 'http://example.org/api?foo=some message';
var encoded = Uri.encodeFull(uri);
assert(encoded == 'http://example.org/api?foo=some%20message');

var decoded = Uri.decodeFull(encoded);
assert(uri == decoded);

http://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html#ch03-uri

Solution 2 - Urlencode

Update: There is now support for encode/decode URI in the Dart Uri class

Dart's URI code is placed in a separate library called dart:uri (so it can be shared between both dart:html and dart:io). It looks like it currently does not include a urlencode function so your best alternative, for now, is probably to use this Dart implementation of JavaScript's encodeUriComponent.

Solution 3 - Urlencode

I wrote this small function to convert a Map into a URL encoded string, which may be what you're looking for.

String encodeMap(Map data) {
  return data.keys.map((key) => "${Uri.encodeComponent(key)}=${Uri.encodeComponent(data[key])}").join("&");
}

Solution 4 - Urlencode

Uri.encodeComponent(url); // To encode url
Uri.decodeComponent(encodedUrl); // To decode url

Solution 5 - Urlencode

I dont' think there is yet. Check out http://unpythonic.blogspot.com/2011/11/oauth20-and-jsonp-with-dartin-web.html and the encodeComponent method.

Note, it's lacking some characters too, it needs to be expanded. Dart really should have this built in and easy to get to. It may have it in fact, but I didn't find it.

Solution 6 - Urlencode

Safe Url Encoding in flutter
Ex.

String url  = 'http://example.org/';
String postDataKey = "requestParam="
String postData = 'hdfhghdf+fdfbjdfjjndf'

In Case of get request :

Uri.encodeComponent(url+postDataKey+postData);

In Case of Post Data Request use flutter_inappwebview library

var data = postDataKey + Uri.encodeComponent(postData);
webViewController.postUrl(url: Uri.parse(url), postData: utf8.encode(data));

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSudarView Question on Stackoverflow
Solution 1 - Urlencodegines capoteView Answer on Stackoverflow
Solution 2 - UrlencodeLars TackmannView Answer on Stackoverflow
Solution 3 - UrlencodeSeth LaddView Answer on Stackoverflow
Solution 4 - UrlencodeThanthuView Answer on Stackoverflow
Solution 5 - UrlencodeDouglas FilsView Answer on Stackoverflow
Solution 6 - Urlencodedinesh_ghadgeView Answer on Stackoverflow