ESPAsyncWebServer icon indicating copy to clipboard operation
ESPAsyncWebServer copied to clipboard

Invalid conversion from 'const AsyncWebParameter*' to 'AsyncWebParameter*'

Open UnivespWagnerQueiroz opened this issue 1 year ago • 1 comments

I try to get the list of parameters with the example below, however I get the error below:

Compilation error: invalid conversion from 'const AsyncWebParameter*' to 'AsyncWebParameter*' [-fpermissive]

Someone can help me with this? I'm using Arduino 2.3.2 on Windows and Linux.

#include "WiFi.h"
#include "ESPAsyncWebServer.h"
 
const char* ssid = "yourNetworkName";
const char* password =  "yourNetworkPass";
 
AsyncWebServer server(80);
 
void setup(){
  Serial.begin(115200);
 
  WiFi.begin(ssid, password);
 
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi..");
  }
 
  Serial.println(WiFi.localIP());
 
  server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
 
    int paramsNr = request->params();
    Serial.println(paramsNr);
 
    for(int i=0;i<paramsNr;i++){
 
        AsyncWebParameter* p = request->getParam(i);
        Serial.print("Param name: ");
        Serial.println(p->name());
        Serial.print("Param value: ");
        Serial.println(p->value());
        Serial.println("------");
    }
 
    request->send(200, "text/plain", "message received");
  });
 
  server.begin();
}
 
void loop(){}

UnivespWagnerQueiroz avatar Sep 24 '24 14:09 UnivespWagnerQueiroz

Hello @UnivespWagnerQueiroz

Replace the line:

AsyncWebParameter* p = request->getParam(i);

by:

const AsyncWebParameter* p = request->getParam(i);

Baptou88 avatar Sep 24 '24 18:09 Baptou88