我怎样才能重新呈现Pinterest的Pin It按钮?

时间:2012-02-19 18:42:25

标签: javascript ajax asynchronous pinterest

我正在尝试在页面加载后创建和操作Pin It按钮。当我用js更改按钮属性时,应该重新渲染它以获得固定动态加载图像的功能。那么,Pinterest有没有像Facebook的B.XFBML.parse()函数那样的方法?

...谢谢

13 个答案:

答案 0 :(得分:43)

只需将data-pin-build属性添加到SCRIPT代码:

<script defer
  src="//assets.pinterest.com/js/pinit.js"
  data-pin-build="parsePinBtns"></script>

这会导致pinit.js将其内部build函数作为window函数公开给全局parsePinBtns对象。

然后,您可以使用它来解析隐式元素中的链接或页面上的所有链接:

// parse the whole page
window.parsePinBtns();

// parse links in #pin-it-buttons element only
window.parsePinBtns(document.getElementById('pin-it-buttons'));

提示:显示零数,只需将data-pin-zero="1"添加到SCRIPT代码。

答案 1 :(得分:14)

最好的方法:

  1. 删除要操作的Pin It按钮的iframe
  2. 在html中附加新按钮,按照您的意愿操作
  3. Realod他们的脚本 - 即使用jQuery:

    $.ajax({ url: 'http://assets.pinterest.com/js/pinit.js', dataType: 'script', cache:true});
    

答案 2 :(得分:9)

要在页面加载后呈现pin-it按钮,您可以使用:

<a href="..pin it link.." id="mybutton" class="pin-it-button" count-layout="none">
    <img border="0" src="//assets.pinterest.com/images/PinExt.png" width="43" height="21" title="Pin It" />
</a>
<script>
    var element = document.getElementById('mybutton');
    (function(x){ for (var n in x) if (n.indexOf('PIN_')==0) return x[n]; return null; })(window).f.render.buttonPin(element);
</script>

当然假设 assets.pinterest.com/js/pinit.js 已经加载到页面上。渲染对象还有一些其他有用的方法,如 buttonBookmark buttonFollow ebmedBoard embedPin embedUser < /强>

答案 3 :(得分:4)

我构建了Derrek的解决方案(并修复了未声明的变量问题),以便可以动态加载pinterest按钮,因此无法减慢加载时间。只与原始问题切线相关,但我认为无论如何我都会分享。

在文件末尾:

<script type="text/javascript">
addPinterestButton = function (url, media, description) {
    var js, href, html, pinJs;
    pinJs = '//assets.pinterest.com/js/pinit.js';
    //url = escape(url);
    url = encodeURIComponent(url);
    media = encodeURIComponent(media);
    description = encodeURIComponent(description);
    href = 'http://pinterest.com/pin/create/button/?url=' + url + '&media=' + media + '&description=' + description;
    html = '<a href="' + href + '" class="pin-it-button" count-layout="vertical"><img border="0" src="http://assets.pinterest.com/images/PinExt.png" title="Pin It" /></a>';
    $('#pinterestOption').html(html);

    //add pinterest js
    js = document.createElement('script');
    js.src = pinJs;
    js.type = 'text/javascript';
    document.body.appendChild(js);
}
</script>

在文件就绪功能中:

addPinterestButton('pageURL', 'img', 'description');//replace with actual data

在您希望出现pinterest按钮的文档中,只需添加一个id为pinterestOption的元素,即

<div id="pinterestOption"></div>
希望能帮助别人!

答案 4 :(得分:3)

这就是我的所作所为。

首先我查看了pinit.js,并确定它用IFRAME替换了特别标记的锚标签。我想我可以编写javascript逻辑来获取生成的iframe上src属性使用的主机名。

所以,我根据pinterest的正常建议插入了标记,但是我将锚标记放入了一个不可见的div中。

<div id='dummy' style='display:none;'>
<a href="http://pinterest.com/pin/create/button/?
    url=http%3A%2F%2Fpage%2Furl
    &media=http%3A%2F%2Fimage%2Furl" 
   class="pin-it-button" count-layout="horizontal"></a>
</div>
<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js">
</script>

然后,在此之后,我插入了一个脚本,从注入的iframe中填充pinterest CDN的主机名。

//
// pint-reverse.js
//
// logic to reverse-engineer pinterest buttons.
//
// The standard javascript module from pinterest replaces links to
// http://pinterest.com/create/button with links to some odd-looking
// url based at cloudfront.net. It also normalizes the URLs.
//
// Not sure why they went through all the trouble. It does not work for
// a dynamic page where new links get inserted.  The pint.js code
// assumes a static page, and is designed to run "once" at page creation
// time.
//
// This module spelunks the changes made by that script and
// attempts to replicate it for dynamically-generated buttons.
//

pinterestOptions = {};

(function(obj){

    function spelunkPinterestIframe() {
        var iframes = document.getElementsByTagName('iframe'),
            k = [], iframe, i, L1 = iframes.length, src, split, L2;

        for (i=0; i<L1; i++) {
            k.push(iframes[i]);
        }
        do {
            iframe = k.pop();
            src = iframe.attributes.getNamedItem('src');
            if (src !== null) {
                split = src.value.split('/');
                L2 = split.length;
                obj.host = split[L2 - 2];
                obj.script = split[L2 - 1].split('?')[0];
                //iframe.parentNode.removeChild(iframe);
            }
        } while (k.length>0);
    }

    spelunkPinterestIframe();

}(pinterestOptions));

然后,

function getPinMarkup(photoName, description) {
    var loc = document.location,
        pathParts = loc.pathname.split('/'),
        pageUri = loc.protocol + '//' + loc.hostname + loc.pathname,
        href = '/' + pathToImages + photoName,
        basePath = (pathParts.length == 3)?'/'+pathParts[1]:'',
        mediaUri = loc.protocol+'//'+loc.hostname+basePath+href,
        pinMarkup;

    description = description || null;

    pinMarkup = '<iframe class="pin-it-button" ' + 'scrolling="no" ' +
        'src="//' + pinterestOptions.host + '/' + pinterestOptions.script +
        '?url=' + encodeURIComponent(pageUri) +
        '&media=' + encodeURIComponent(mediaUri);

    if (description === null) {
        description = 'Insert standard description here';
    }
    else {
        description = 'My site - ' + description;
    }

    pinMarkup += '&description=' + encodeURIComponent(description);
    pinMarkup += '&title=' + encodeURIComponent("Pin this " + tagType);
    pinMarkup += '&layout=horizontal&count=1">';
    pinMarkup += '</iframe>';
    return pinMarkup;
}

然后从jQuery中使用它:

    var pinMarkup = getPinMarkup("snap1.jpg", "Something clever here");
    $('#pagePin').empty(); // a div...
    $('#pagePin').append(pinMarkup);

答案 5 :(得分:3)

我重写了Pinterest按钮代码,以支持在加载AJAX内容后解析Pinterest标记,类似于FB.XFBML.parse()或gapi.plusone.go()。作为奖励,项目中的备用JavaScript文件支持HTML5有效语法。

查看PinterestPlus project at GitHub.

答案 6 :(得分:2)

尝试阅读这篇文章http://dgrigg.com/blog/2012/04/04/dynamic-pinterest-button/它使用一个小的javascript用新按钮替换pinterest iframe,然后重新加载pinit.js文件。下面是javascript来做技巧

refreshPinterestButton = function (url, media, description) {
    var js, href, html, pinJs;
    url = escape(url);
    media = escape(media);
    description = escape(description);
    href = 'http://pinterest.com/pin/create/button/?url=' + url + '&media=' + media + '&description=' + description;
    html = '<a href="' + href + '" class="pin-it-button" count-layout="horizontal"><img border="0" src="http://assets.pinterest.com/images/PinExt.png" title="Pin It" /></a>';
    $('div.pin-it').html(html);

    //remove and add pinterest js
    pinJs = $('script[src*="assets.pinterest.com/js/pinit.js"]');
    pinJs.remove();
    js = document.createElement('script');
    js.src = pinJs.attr('src');
    js.type = 'text/javascript';
    document.body.appendChild(js);
}

答案 7 :(得分:2)

这就是我所做的..在@Derrick Grigg稍作修改,让它在AJAX重新加载后在页面上的多个pinterest按钮上工作。

refreshPinterestButton = function () {
    var url, media, description, pinJs, href, html, newJS, js;
    var pin_url;
    var pin_buttons = $('div.pin-it a');
    pin_buttons.each(function( index ) {
        pin_url = index.attr('href');
        url = escape(getUrlVars(pin_URL)["url"]);
        media = escape(getUrlVars(pin_URL)["media"]);
        description = escape(getUrlVars(pin_URL)["description"]);
        href = 'http://pinterest.com/pin/create/button/?url=' + url + '&media=' + media + '&description=' + description;
        html = '<a href="' + href + '" class="pin-it-button" count-layout="horizontal"><img border="0" src="http://assets.pinterest.com/images/PinExt.png" title="Pin It" /></a>';
        index.parent().html(html);
    });

    //remove and add pinterest js
    pinJs = '//assets.pinterest.com/js/pinit.js';
    js = $('script[src*="assets.pinterest.com/js/pinit.js"]');
    js.remove();
    js = document.createElement('script');
    js.src = pinJs;
    js.type = 'text/javascript';
    document.body.appendChild(js);
}

});


function getUrlVars(pin_URL)
{
    var vars = [], hash;
    var hashes = pin_URL.slice(pin_URL.indexOf('?') + 1).split('&');
    for(var i = 0; i < hashes.length; i++)
    {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}

答案 8 :(得分:1)

他们的pinit.js文件在"Pin it" button docs中引用,不会公开任何全局变量。它运行一次,除了它创建的iframe之外不会留下痕迹。

您可以再次注入该文件以“解析”新按钮。他们的JS会在运行时查看所有锚标记,并使用{ifer'd按钮替换class="pin-it-button"的锚标记。

答案 9 :(得分:0)

这对我来说很好:http://www.mediadevelopment.no/projects/pinit/它会获取点击事件的所有数据

答案 10 :(得分:0)

我尝试调整他们的代码以相同的方式工作(插入,忘掉它),另外你可以调用Pinterest.init()在页面上有任何“新”按钮(例如,ajax'd in,动态创建等等)变成了正确的按钮。

项目:https://github.com/onassar/JS-Pinterest 原始:https://raw.github.com/onassar/JS-Pinterest/master/Pinterest.js

答案 11 :(得分:0)

执行此操作的官方方法是在加载脚本时设置“data-pin-build”属性:

<script defer="defer" src="//assets.pinterest.com/js/pinit.js" data-pin-build="parsePins"></script>

然后你可以像这样动态渲染你的按钮:

// render buttons inside a scoped DOM element
window.parsePins(buttonDomElement);

// render the whole page
window.parsePins();

此网站上还有另一种方法可让您render them in JavaScript without the script tag

答案 12 :(得分:0)

截至2020年6月,Pinterest将Pin js代码更新为v2。这就是为什么数据引脚构建可能无法进行的原因 <script defer="defer" src="//assets.pinterest.com/js/pinit.js" data-pin-build="parsePins"></script>

现在它可以在pinit_v2.js上运行 <script async defer src="//assets.pinterest.com/js/pinit_v2.js" data-pin-build="parsePins"></script>