我应该如何 post 挂毯中带有资产的图片?

How should i post a picture with asset in tapestry?

[]

我的图片位于文件夹 'images' 中,该文件夹是 'layout' 文件夹的子文件夹。
我在我的 .tml 页面中放置了以下代码行:

<img src="${asset:layout:/images/img01.jpg}"/>

但我收到此错误:无法将 'asset:layout:/images/img01.jpg' 转换为组件参数绑定:资产路径 'layout:/images/img01.jpg'.

的未知前缀 这种情况下我该怎么办,因为我试图将我的图片移动到其他文件夹中,但错误又出现了!

试试 <img src="${asset:context:/layout/images/img01.jpg}"/>。 Tapestry 是正确的,layout: 不是有效前缀,它应该是您路径的一部分。