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回答
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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ