- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有2个简单的领域模型(Domain Model)。我正在尝试从投资组合实例的显示页面中将发布标记设置为NO的出版物获得计数。
我可以将发布总数设置为NO,但是不能获取实例特定数量的NO标志。不管我尝试了什么,我总是从所有记录中得到总计。我如何只获得一个实例计数。
示例:用户加载Porfolio的显示页面(操作),显示出版物列表,一个数字字段通过为该特定组合计数“已发布”标志NO来显示尚未发布的出版物。
我已经尝试了Publication.countByPublished('No'),$ {Publication.executeQuery(“从发布位置的发布位置选择计数(已发布)=?”,['No'])}和其他各种方法,但似乎无法通过该投资组合的ID,因此仅计算ID为“已发布”的发布的ID。
真的在这上面挠头
类(class)组合
hasMany = [publications:Publication]
Sring portfolioName
belongsTo = [portfolio: Portfolio]
String publicationName
String publicationContent
String published
static constraints = {
published (blank: false, inList: ["No","Yes"])
最佳答案
你有没有尝试过:
def count = Publication.countByPublishedAndPortfolio("No", portfolioInstance)
def count = 0
portfolioInstance.publications.each {
if (it.published == 'No') {
count++
}
}
关于grails - Grails-_template中的countBy计算所有记录而不是域实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14741960/
我刚刚意识到 ES 有一个 _/_template 和一个 _/_index_template。 它们有什么用? 我正在使用代码: PutIndexTemplateRequest ngramTempl
我刚刚意识到 ES 有一个 _/_template 和一个 _/_index_template。 它们有什么用? 我正在使用代码: PutIndexTemplateRequest ngramTempl
我正在尝试在 Elasticsearch 中自动使用索引模板,因此我开始在“[ES_CONFIG_DIR]/templates/”目录(http://www.elastic.co/guide/en/e
我正在尝试使用 lodash _.template 通过 Node.js 创建 HTML 电子邮件模板。当我使用下面的代码时,出现此错误:((__t = (firstName)) == null ?
我是一名优秀的程序员,十分优秀!