# 如何取回创建帖子的原始“原始”数据？

**URL:** <https://meta.discourse.org/t/get-back-the-real-raw-data-that-created-a-post/189183>\
**Category:** Development\
**Created:** [2021年五月4日 18:48 UTC](https://meta.discourse.org/t/get-back-the-real-raw-data-that-created-a-post/189183 "2021-05-04T18:48:10Z")\
**Posts on this page:** 1\
**Showing post:** 33

<div class="post-metadata">

**Author:** ![supermathie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/supermathie/32/507518_2.png) [@supermathie](https://meta.discourse.org/u/supermathie)\
**Post date:** [2026年一月24日 00:40 UTC](https://meta.discourse.org/t/get-back-the-real-raw-data-that-created-a-post/189183/33 "2026-01-24T00:40:21Z")

</div>

该主题中 OP 的纯文本如下：

```plaintext
○ → curl https://discuss.kde.org/posts/132565/raw
<p>Leaking memory is impolite. It’s messy, it can suggest logic bugs, and thanks to AI grifters RAM is expensive.
</p>
<hr>
<small>This is a companion discussion topic for the original entry at <a href="https://nicolasfella.de/posts/detecting-leaks-in-kde-ci/?utm_source=atom_feed">https://nicolasfella.de/posts/detecting-leaks-in-kde-ci/?utm_source=atom_feed</a></small>

```

这与“已渲染”版本中显示的内容完全相同。

> [@rokejulianlockhart](#):
>
> 然而，当 `details` 被交互式展开时

这不是展开 `details` 块。点击 Show Full Post 会加载_其他内容_，这是嵌入内容的完整展开，它_不是_来自帖子原始内容，而是来自额外的帖子元数据。

您可以在浏览器中点击它时看到网络请求，等效请求如下：

```plaintext
○ → curl -s -H 'accept: application/json' 'https://discuss.kde.org/posts/132565/expand-embed' | jq -r .cooked
<div><div>
            <p>Leaking memory is impolite. It’s messy, it can suggest logic bugs, and thanks to AI grifters RAM is expensive.</p>
…
…
…
<p>LSAN is now enabled for some Frameworks CI builds, but ideally it would be enabled for all KDE projects. And of course any leaks found along the way should be fixed.</p>
<p>Happy leak-fixing!</p>
        </div></div>
<hr>
<small>This is a companion discussion topic for the original entry at <a href='https://nicolasfella.de/posts/detecting-leaks-in-kde-ci/?utm_source=atom_feed'>https://nicolasfella.de/posts/detecting-leaks-in-kde-ci/?utm_source=atom_feed</a></small>

```

您是想查看嵌入内容吗？如果是，请使用上述内容。如果不是，您_期望_看到什么？

---

_[View the full topic](https://meta.discourse.org/t/get-back-the-real-raw-data-that-created-a-post/189183)._
