gpt4 book ai didi

javascript - jsSocials 分享到 Pinterest image_url 错误

转载 作者:行者123 更新时间:2023-11-30 16:46:05 28 4
gpt4 key购买 nike

我正在使用 jsSocials向网站添加一些漂亮的共享选项。它大部分运行良好,但 pinterest 共享按钮总是以 pinterest 上的错误结束:

Parameter 'image_url' (value http:null) is not a valid URL format.

我正在使用他们示例中的一些非常普通的代码:

jQuery(".socialnetworkwrap").jsSocials({
showCount: true,
showLabel: true,
shares: ["email", "twitter", "facebook", "googleplus", "linkedin", "pinterest"]
});

这工作正常,但为了解决这个问题,我尝试了来自 their documentation 的以下内容.我还验证了 imageToShare 对象正在通过警报返回有效值。

var imageToShare = jQuery('div.content p img:first').attr('src');

jsSocials.shares.pinterest = {
media: imageToShare
};

jQuery(".socialnetworkwrap").jsSocials({
showCount: true,
showLabel: true,
shares: ["email", "twitter", "facebook", "googleplus", "linkedin", "pinterest"]
});

但是当我这样做时,我的网站出现错误。

Uncaught TypeError: Cannot read property 'replace' of undefined

有人用过这个插件吗?您有什么建议来尝试修复此 pinterest 错误?

最佳答案

呃...直到我在文档的 GitHub 版本上看到它才发现它...

这会很好地设置默认图像并允许 Pinterest 共享工作。

var imageToShare = jQuery('div.content p img:first').attr('src');

jsSocials.setDefaults("pinterest", {
media: imageToShare
});

jQuery(".socialnetworkwrap").jsSocials({
showCount: true,
showLabel: true,
shares: ["email", "twitter", "facebook", "googleplus", "linkedin", "pinterest"]
});

关于javascript - jsSocials 分享到 Pinterest image_url 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31212526/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com