1

我有以下要点...

https://gist.github.com/4445255

我尝试将其添加到我的 Blogger 条目(根据此处),并将其添加到我的帖子中...

<script src="https://raw.github.com/moski/gist-Blogger/master/public/gistLoader.js" type="text/javascript"></script>

终于在我添加的位置

<div class="gistLoad" data-id="4445255" id="gist-GistID">Loading ....</div>

但它只是显示加载...

4

4 回答 4

1

您刚刚引用的脚本 (gistLoader.js) 包含对函数 initGist() 的调用,我在任何地方都看不到它。

当您创建的元素的 id 为“gist-GistID”时,它还会通过 id “gistPrinter”查找 DOM 元素。

我对要点不熟悉,也许其他人可以纠正我。

编辑:我在这里找到了 initGist(): https ://raw.github.com/moski/gist-Blogger/master/public/gistBlogger.js

于 2013-01-03T18:11:24.197 回答
1

我还没有将我的项目转换为动态视图。所以我去了模板>动态视图。

有一个小问题,保存格式似乎只能在 IE 中用于动态视图...

http://productforums.google.com/forum/#!topic/blogger/S_uVwRQQrOY%5B1-25-false%5D

于 2013-01-03T19:47:56.730 回答
0

您忘记设置属性。它应该看起来像这样。

<div class="gistLoad" data-id="4445255" id="gist-4445255">Loading ....</div>

于 2013-11-02T07:28:40.613 回答
0

我最近发现了这个问题,其中在放置嵌入 URL 后没有加载要点,例如

<script src="https://gist.github.com/dishabhatt123/43e98122304000687293b4c3ef3dc474.js"></script>

直接进入我博客的 HTML 视图。这是在烧烤之后终于帮助我的东西。

基本上浏览器不支持随机包含的脚本,因此使用 rawgist。将以下脚本放在页面底部的顶部。

<script src="https://rawgit.com/moski/gist-Blogger/master/public/gistLoader.js" type="text/javascript"></script>

然后,添加 div 如下:

<div class="gistLoad" data-id="43e98122304000687293b4c3ef3dc474" id="gist-43e98122304000687293b4c3ef3dc474">Loading or something, this is just text to display while the browser pulls the gist....</div>

在这里,在上面的 div 中,data-id =" whereyourgistidis " 和 id="gist - whereyourgistidis "

在上面的嵌入 url 示例中,我的 gist Id 是 '43e98122304000687293b4c3ef3dc474'。您可以将其替换为嵌入 url 中的 gist id。

请注意:您不会在“撰写视图”中看到要点。但是当你预览你的博客时,你可以看到它!

于 2020-10-01T06:36:07.310 回答