I created a web page with a select like this:
<select ng-model="access.method">
    <option>DELETE</option>
    <option>GET</option>
    <option>POST</option>
    <option>PUT</option>
</select>
and then a retrieve:
$http({
    method: access.method,
    url: access.url
})
How can I make it so that when the web page opens that it defaults to the GET option ?
