谷歌+的规范网址不能用于重复标记

时间:2014-05-08 12:20:30

标签: javascript apex-code google-apps

我的页面中有多个子页面链接我使用规范链接来共享我的页面但是对于所有子页面它显示的是相同的链接

<link rel="canonical" data-href="http://www.website.com/{!object.name}" />

<div class="g-plusone"  data-size="medium" ></div>
<!-- Place this tag after the last +1 button tag. -->

<script type="text/javascript">
(function() {
 var po = document.createElement('script'); 
 po.type = 'text/javascript'; 
 po.async = true;
 po.src = 'https://apis.google.com/js/plusone.js';
 var s = document.getElementsByTagName('script')[0]; 
 s.parentNode.insertBefore(po, s);
})();
</script>

我在apex中使用此代码:重复标记但是对于所有记录,第一个值url显示。怎么做?

1 个答案:

答案 0 :(得分:0)

通过谷歌文档找到了一些代码,它对我来说很好。     而不是使用链接

 <div class="g-plusone"  data-href="http://www.website/{object.name}" data-size="medium" ></div>