我正在嘗試爲我的現有對象創建一個GeoPoint類型。 Facebook在這裏的文檔並不是非常出色 - 但我所做的是創建一個新的屬性並將其命名爲location
。我製作了GeoPoint類型並且是必需的。在Facebook中創建GeoPoint複雜數據類型打開圖形
我然後提供模板中的以下內容:
<meta property="my-app:location:latitude" content="<%= @location.lat %>" />
<meta property="my-app:location:longitude" content="<%= @location.lng %>" />
然而,調試器抱怨:
The parser's result for this metadata did not match the input metadata. Likely, this was caused by the data being ordered in an unexpected way, multiple values being given for a property only expecting a single value, or property values for a given property being mismatched. Here are the input property =>content pairs that were not seen in the parsed result: 'my-app:location:latitude => 40.134537901957735, my-app:location:longitude => -75.00853989318185'
我怎麼定義這個GeoPoint對象和我怎麼嵌入緯度/ lng在我的網址?這不希望以我嘗試的任何方式驗證它。
根據文檔的高度是可選的。另外,如果你看看我的元標籤,他們看起來是正確的,內容有正確的數據嵌入,我提供的位置:緯度,位置:經度(foursquare也這樣做),但是當我調試時,我仍然得到錯誤。 – randombits
也可能我沒有在對象配置中輸入屬性。我命名了屬性「位置」,將其設置爲「GeoPoint」類型,並將上面的代碼嵌入到「需要」中 – randombits
對象數據是否正確保存?如果你的標籤像上面那樣,它應該沒問題...(它在對象中,而不是行爲是對的?) – Igy