如何检查 TypoScript 中的 CONTENT 是否不为空?
我按以下方式创建一个 CONTENT 对象,
MIDCONTENT = CONTENT
MIDCONTENT{
table = tt_content
select.orderBy = sorting
select.where = colPos = 0
}
此外,我有一个 TEXT 对象,如果 MIDCONTENT 不为空,它应该获取值测试,
BOTTOMONTENT= TEXT
BOTTOMONTENT{
value=test
if{
//check here
}
}
我如何检查 MIDCONTENT(它是一个 CONTENT 对象)是否不为空?
I create a CONTENT object in a following way,
MIDCONTENT = CONTENT
MIDCONTENT{
table = tt_content
select.orderBy = sorting
select.where = colPos = 0
}
further i have a TEXT Object, which should get the value test, if MIDCONTENT is not empty
BOTTOMONTENT= TEXT
BOTTOMONTENT{
value=test
if{
//check here
}
}
How can i check, if MIDCONTENT, which is a CONTENT object, is not empty?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
反过来做:
do it the other way arround: