onchange function of JavaScript calling in lambda function

0

Lambda function is using JavaScript We want a drop down button which list of requests When ever we select a request in from the drop down it should update in the query before running the query After finishing the query execution it should not reset the service name drop down

exports.handler = function myFunction(event,context) { var x = document.getElementById("mySelect").value; selectService=x }

        <tr>
            <td>Select Service</td><td><select id="mySelect"  name="selectService" onchange="myFunction()">
            <option selected="${selectService==="END"?"selected":""}" value="END">END</option>
             <option selected="${selectService==="START"?"selected":""}" value="START">START</option>
            </select></td>
        </tr>
1 Risposta
0

The question is not clear. Can you share an architecture diagram of what exactly are you trying to do with the lambda function and also please provide some details around what is the issue you are facing with the lambda function?

profile pictureAWS
ESPERTO
con risposta 2 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande