3

我今天一直在努力尝试从jQuery Geocomplete获取字段结果以显示street_address但它看起来插件没有将它作为data-geo=""呈现到我的表单字段或其他任何东西上!

在我的 HTML 中,我有字段可以获取街道名称和另一个用于编号的字段,我需要两者的结果才能转到#BillingAddress。我相信一些 JavaScript 可能会完成这项工作,但我不是这方面的专家。

<div class="item">
<input id="autocomplete" placeholder="Look up your address" type="text"></input>
</div>
<div class="item" style="display: none;">
<input class="cat_textbox" id="houseNo" data-geo="street_number" type="text" placeholder="House Number" maxlength="50"/>
</div>
<div class="item" style="display: none;">
<input class="cat_textbox" id="street" data-geo="route" type="text" placeholder="street" maxlength="50"/>
</div>
<div class="item">
<input class="cat_textbox" id="BillingAddress" data-geo="street_address" type="text" placeholder="Billing Address" maxlength="50" name="BillingAddress"/>
</div>

到目前为止,我已经尝试使用一些 jquery 将字段值传输到#BillingAddress输入,但它仅在其他输入被键入或按下、单击时复制,但我希望它们保持隐藏以提高可见性并使表单不那么复杂some people, so when the Geo results is chosen they populate into this field together.

$('#houseNo').on('propertychange change click keyup input paste',function(){
   $('#BillingAddress').val(this.value+' '+$('#street').val());
});

$('#street').on('propertychange change click keyup input paste', function(){
   $('#BillingAddress').val($('#houseNo').val()+' '+this.value);
});

非常感谢您的帮助,我认为这对于其他一些人来说也是一个很好的查询。

这是小提琴

4

2 回答 2

2

fillDetails: function(result){ “result”对象在“address_components”中没有“street_address”,它被设置为结果的单独属性 - “name”。如果您只是输入搜索词并提交,则会返回“名称”。如果再次单击“查找”,则不会返回“名称”。

我做了一个快速的“修复”来替换“street_address”,在第 338 行我添加了以下内容:

    street_addr: result.formatted_address.split(',')[0],

所以第 335-339 行看起来像这样:

  // Add infos about the address and geometry.
  $.extend(data, {
    formatted_address: result.formatted_address,
    street_addr: result.formatted_address.split(',')[0],
    location_type: geometry.location_type || "PLACES",

并在第 65 行添加了“street_addr”:

"formatted_address street_addr location_type bounds").split(" ");
于 2015-03-31T21:31:04.310 回答
1

您可能已经知道,修改插件并不是一件好事。有一种更简单的方法可以连接结果对象的元素。只需绑定到结果。

$('#geocomplete').geocomplete({
  details: '#geo_details',
  detailsAttribute: 'data-geo',
  types: ['geocode', 'establishment']
}).bind("geocode:result", function(e, r) {
  return $('[data-geo=street_address]').val(r['address_components'][0]['short_name'] + ' ' + r['address_components'][1]['short_name']);
});
于 2015-08-04T04:12:35.710 回答