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>
已提問 2 年前檢視次數 278 次
1 個回答
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
專家
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南