HTMLドロップダウンメニューに、次を含む外部JSONファイルのデータを入力しようとしています
{
"Destinations": [
{
"destinationName": "London",
"destinationID": "lon"
},
{
"destinationName": "New York",
"destinationID": "nyc"
},
{
"destinationName": "Paris",
"destinationID": "par"
},
{
"destinationName": "Rome",
"destinationID": "rom"
}
]
}
私が望むのは、ロンドン、ニューヨークなどのdestinationNameを表示するドロップダウンメニューですが、これにアプローチする方法について混乱しています。
どんな助けでも大歓迎です。