0

我想在 parse.com 的地理点标签上打印。使用

 <label class="edit-location"><%= location %></label>

显示[对象对象]

如果我使用

 <label class="edit-location"><%= JSON.stringify(location) %></label>

显示 {"__type":"GeoPoint","latitude":40,"longitude":-30}

仅显示正确的格式,40,-30(使用此示例)

谢谢

4

1 回答 1

1

尝试这个:

<label class="edit-location"><%= location.latitude + "," + location.longitude %></label>
于 2014-05-20T22:06:48.977 回答