1
私は、Googleがで提供して標準サンプルコード使用して、内部のアプリのための形式のアドレスにGoogleのアドレスオートコンプリートAPIを使用しています:GoogleマップAPI - 自動補完英国郡
を私は正しく応答を取得「administrative_area_level_2」郡すなわち、1つを除い除く
"html_attributions" : [],
"result" : {
"address_components" : [
{
"long_name" : "BA1 1UN",
"short_name" : "BA1 1UN",
"types" : [ "postal_code" ]
},
{
"long_name" : "Bath",
"short_name" : "Bath",
"types" : [ "postal_town" ]
},
{
"long_name" : "Bath and North East Somerset",
"short_name" : "Bath and North East Somerset",
"types" : [ "administrative_area_level_2", "political" ]
},
{
"long_name" : "England",
"short_name" : "England",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "United Kingdom",
"short_name" : "GB",
"types" : [ "country", "political" ]
}
そして、すべての私のフォームフィールドの完全な罰金:各ポストコードについては、以下のと似ています。私の作業HTMLは次のようになります。
<div class="form-group">
<label>Postal Town</label>
<input class="form-control field" placeholder="Enter your country"
required="true" name="postal_town" id="postal_town">
<p class="help-block">Enter your country.</p>
</div>
しかし、これはしません:
<div class="form-group">
<label>County</label>
<input class="form-control field" placeholder="Enter your county" required="true" name="administrative_area_level_2" id="administrative_area_level_2">
<p class="help-block">Enter your county.</p>
</div>
にはどうすればオートフォームを完了するために、そのフィールドにアクセスすることができますか?