如何在 PyroCMS 中通过上传访问文件?

发布于 2024-12-26 01:38:58 字数 356 浏览 0 评论 0原文

我已经上传了一张图片; random.png 通过管理员使用 PyroCMS 并将其放入名为“Portfolio Images”的文件夹中(url slug 为“portfolio-images”)

在我的页面中,我希望能够使用一个标签。 url slug 是如何工作的?我尝试过 http://mysite.com/portfolio-images/random.png - 但这不起作用。

有没有办法通过 {{ asset:image }} 标签引用它?

谢谢!

I've uploaded an image; random.png with PyroCMS through the admin and placed it into a folder called "Portfolio Images" (the url slug is 'portfolio-images')

In my pages I want to be able to reference this image using a tag. How does the url slug work? I've tried http://mysite.com/portfolio-images/random.png - but it doesn't work.

Is there a way to maybe reference it via the {{ asset:image }} tag?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

混吃等死 2025-01-02 01:38:59

要显示您的图像,您可以执行以下操作:

有一个用于制作文件列表的插件,文档尚不可用,但您在 system/cms/modules/files/plugin.php 的代码中有该插件的描述

/**
 * Files listing
 *
 * Creates a list of files
 *
 * Usage:
 *
 * {{ files:listing folder="home-slider" type="i" fetch="subfolder|root" }}
 *  // your html logic
 * {{ /files:listing }}
 *
 * The tags that are available to use from this method are listed below
 *
 * {id}
 * {folder_id}
 * {user_id}
 * {type}
 * {name}
 * {filename}
 * {description}
 * {extension}
 * {mimetype}
 * {width}
 * {height}
 * {filesize}
 * {date_added}
 *
 * @return  array
 */

To display your image you can do :

there is a plugin for making file list the documentation is not yet available but you have a description of the plugin in the code in system/cms/modules/files/plugin.php

/**
 * Files listing
 *
 * Creates a list of files
 *
 * Usage:
 *
 * {{ files:listing folder="home-slider" type="i" fetch="subfolder|root" }}
 *  // your html logic
 * {{ /files:listing }}
 *
 * The tags that are available to use from this method are listed below
 *
 * {id}
 * {folder_id}
 * {user_id}
 * {type}
 * {name}
 * {filename}
 * {description}
 * {extension}
 * {mimetype}
 * {width}
 * {height}
 * {filesize}
 * {date_added}
 *
 * @return  array
 */
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文