Spry 地区的双倍 if 条件

发布于 2024-07-07 22:59:16 字数 527 浏览 9 评论 0原文

<div spry:region="ds1" spry:repeatchildren="ds1">
  <b spry:if=" '{title}'!='' ">
    <!-- this is the first if --> 
    <a href="#"  spry:if=" '{author}'!='' ">{author}
      <!-- this is the second if -->
    </a>
  </b>
</div>



我想知道是否有任何像

if(x==y && i>j)  

<b>spry</b> 

地区一样简单的方法。 我在 spry 文档 (labs.adobe.com/technologies/spry/) 中找不到任何信息

<div spry:region="ds1" spry:repeatchildren="ds1">
  <b spry:if=" '{title}'!='' ">
    <!-- this is the first if --> 
    <a href="#"  spry:if=" '{author}'!='' ">{author}
      <!-- this is the second if -->
    </a>
  </b>
</div>

I wonder if there is any method as simple as

if(x==y && i>j)  

in

<b>spry</b> 

region.
I can't find any information in spry docs (labs.adobe.com/technologies/spry/)

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

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

发布评论

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

评论(3

花落人断肠 2024-07-14 22:59:16

spry:if 属性内的语法是 Javascript,因此您可以使用 &&

<b spry:if="'{title}' != '' && '{author}' != ''">
<!-- ... -->
</b>

The syntax inside the spry:if attribute is Javascript, so you can use &&:

<b spry:if="'{title}' != '' && '{author}' != ''">
<!-- ... -->
</b>
小红帽 2024-07-14 22:59:16

您也可以调用一个函数

spry:if="myFunc();"

,并在函数中返回布尔值作为结果

function myfunc()
{
//do somethings ;
if(...)
return true;
else
return false;
}

also you can call a function instead

spry:if="myFunc();"

and in your function return Boolean value as result

function myfunc()
{
//do somethings ;
if(...)
return true;
else
return false;
}
很酷不放纵 2024-07-14 22:59:16

通常我喜欢这样

<div spry:region="ds1" spry:repeatchildren="ds1">
    <b spry:if=" '{ds1::title}'!='' && '{ds1::author}'!=''">
        <a href="#">{author}</a>
    </b>
</div>

Normally I do like this

<div spry:region="ds1" spry:repeatchildren="ds1">
    <b spry:if=" '{ds1::title}'!='' && '{ds1::author}'!=''">
        <a href="#">{author}</a>
    </b>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文