Coder Social home page Coder Social logo

Comments (5)

wendux avatar wendux commented on September 22, 2024

you can use TransFormer.urlEncodeMap(queryMap) directly:

var queryMap={
  'search': 'How to become a hero like LyNam'
};
var result = await dio.post('$url?${TransFormer.urlEncodeMap(queryMap)}',....);

from dio.

lyquocnam avatar lyquocnam commented on September 22, 2024

yes, we can process the string, but if dio can support, that will be simpler and safer by parse from URI in dio core

var uri = Uri.http('http://demo.com/api', '/search', {
      'search': 'how can...'
    });

it relate to baseUrl and should be did in dio core.

from dio.

wendux avatar wendux commented on September 22, 2024

I known, you can also :

var uri=Uri(scheme: "https", host: "flutterchina.club", queryParameters: {
    "xx":"xx",
    "yy":"dd"
  });
var result = await dio.post(uri.toString(),....)

I personally think that creating an Uri instance is not easy and most of the time, the user has only a url link(String)。 so, dio support url which type is String default. when the users need an Uri, they can also create it manually, and then call toString() method to pass the result to the APIs of dio, It's very simple, isn't it。

from dio.

lyquocnam avatar lyquocnam commented on September 22, 2024

i remember i did like that, but the url be dupplicate with something like:

http://demo.com/http://demo.com/...........

i think dio has not handled full url like that yet.
ps: this i added baseurl to dio, and other case i have not done yet

from dio.

wendux avatar wendux commented on September 22, 2024

If the path starts with "http:" or "https:", the baseUrl will be ignored. This feature will not be supported. Thanks !

from dio.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.