transmit information using GET parameters in a non-array format

I wish to directly send the data via parameters instead of using an array

This is how the console is displaying the data:

enter image description here

I want it to be sent in this format directly:

ID: 3 Description: Executing

Code: refresh () { this.$axios.get()

     this.$axios.get("/Operational/GetReport", {
      params: { 
        status: this.status
      }
     }).then(res => { 
        this.deadlines = res.data
        this.$refs.chart1.updateSeries([{
            name: 'ON TIME',
            data: [this.deadlines.onTime, this.deadlines.onSchedule, this.deadlines.delayed]
         }])
      })

Answer №1

Conditions: { identifier: your unique ID, Status: "In progress" }

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Effective methods for synchronizing two dropdown menus with varied displays using React

Having a list of countries with specific key-value pairs, I am interested in creating two Dropdown lists. The first will display the keys, while the second will show the corresponding text values. The main objective is to provide the option to select eith ...

Edge Browser does not support PHP Websocket technology

I created a multiplayer card game and incorporated a websocket for functionality. To integrate the websocket in php, I utilized this specific library After deploying it on my Ubuntu server, the program functioned smoothly on Chrome and Firefox (The fronte ...

Filtering Completed: Table Returned

Recently, I worked on a fun project where I organized JSON wine data into a table and created an object that defines various wines along with their attributes like color, taste, and body. The main objective: When clicking the red button, I want a function ...

Having trouble with jQuery after adding more content?

I recently started delving into the world of javascript, incorporating it into my website. Just last week, I came across a script that utilizes jQuery to load extra content onto my page. Initially, everything seemed to be functioning smoothly until I reali ...

Identify the significance within an array and employ the filter function to conceal the selected elements

I'm in the process of filtering a list of results. To do this, I have set up a ul list to display the results and checkboxes for selecting filter options. Each item in the ul list has associated data attributes. When a checkbox with value="4711" is c ...

Problem with Jquery Colorbox in firefox

I am using JavaScript to dynamically populate anchor links in a repeater and displaying them in a colorbox iframe. This functionality is working well in IE7, Safari, and Chrome, but encountering an issue in Firefox (version 14.1). In Firefox, the links ar ...

What is the best way to ensure the constant rotation speed of this simple cube demo?

Currently delving into the world of Three.js. I'm curious about how to make the cube in this demo rotate at a consistent speed rather than depending on mouse interactions. Any tips on achieving this? ...

Customizing functions in JavaScript with constructor property

What is the best way to implement method overriding in JavaScript that is both effective and cross-browser compatible? function Person(firstName, lastName) { this.firstName = firstName; this.lastName = lastName; ...

What is the purpose behind webpack compiling global.js?

As I dive into the world of webpack, my initial build unearthed an unexpected default file in the output (index 1): build.js 222 kB 0 [emitted] main [1] (webpack)/buildin/global.js 509 bytes {0} [built] [2] ./source/scripts/main.js 105 byte ...

Navigating to a particular div using a click event

I am trying to achieve a scrolling effect on my webpage by clicking a button that will target a specific div with the class "second". Currently, I have implemented this functionality using jQuery but I am curious about how to accomplish the same task using ...

Show the button's value on the text box using JavaScript

When using bootstrap, I encountered an issue where the value of a button would display in a textbox upon clicking it, but then quickly disappear. This unexpected behavior left the textbox empty prematurely. <input type="submit" value="5000t "class="btn ...

Updating state before and after making an API request

I have implemented an asynchronous function with prevState in my code. The purpose of using prevState is twofold: 1) updating a deeply nested object and 2) sending data to an API based on the current state. Asynchronous programming is utilized for the API ...

``Are there any thoughts on how to troubleshoot display problems specifically on mobile

Whenever I use Safari on iOS for my web application, I encounter strange rendering issues. It's odd because the majority of the time everything functions as it should, but every now and then these bugs crop up with no discernible pattern. Examples th ...

retrieving an element from a collection of objects

For a project utilizing the openweather api, I encountered fluctuating data based on the time of day it is viewed. My goal is to loop through the first 8 objects to identify a dt_txt value of 12:00:00. Once found, I intend to store this result in a variabl ...

Inject Angular environment variables into compiled static Angular files within a Spring Boot application

Currently, I am utilizing Angular and Spring Boot for the development of a website project. During deployment, we execute the command ng build --output-path=../spring-boot-project/src/main/resources/static" in Angular to generate a static folder withi ...

Vue component lifecycle hook to fetch data from Firebase

Looking for a solution with Vue 2 component that utilizes Vuefire to connect declaratively with a Firebase real-time database: import { db } from '../firebase/db' export default { data: () => ({ cats: [] }), firebase: { ...

What is the method for flipping a JSON object?

I recently came across a function that passes JSON in its parameter... { "code":0, "payload":[ { "time":1349661897, "packages":[ "49381" ], "ign":"PurpleArrow", "price":"15.99", ...

What steps should I take to successfully run a Vue component on Apache without the need for excessive infrastructure?

Currently, I am immersing myself in learning Vue in order to efficiently tackle some frontend development tasks required for internal use. My guide of choice is the Vue.js v2 guide, particularly focusing on the Introduction section. I have successfully imp ...

Below are the steps to handle incorrect input after receiving only one letter:

H-I This is my input .centered-name { width: 80%; margin: auto; } .group { width: 100%; overflow: hidden; position: relative; } .label { position: absolute; top: 40px; color: #666666; font: 400 26px Roboto; cursor: text; transit ...

Is it possible for the ".filter" function to verify if the target contains multiple attributes?

I'm currently working on a checkbox filter setup and using Jquery's .filter to sort through some divs. Below is the snippet of Jquery code that I am using: $(document).ready(function(){ var checkboxes = $('div.filter-groups').find(&ap ...