-
-
Notifications
You must be signed in to change notification settings - Fork 3
Query String
Fatih Koca edited this page Nov 27, 2019
·
1 revision
With this setting, you can add serialized query string to the URL you are sending.
Vue.ajax.get("http://example.com", {}, {
urlData: [
{category: "Accessories"},
{page: 15}
]
});
The URL will be like this when sending the request:
http://example.com?category=Accessories&page=15