我有一个text/template
类型的脚本,其中显示从ElasticSearch数据库检索的一些值。我的脚本看起来像这样:
<script type="text/template" id="script1">
<div style="color:black;"><%= highlight.field1 %></div>
</script>
但是,有时候没有定义此突出显示值,而是希望显示_source.field1
。我最初的猜测是添加一个尝试捕获,但这不会起作用:
<script type="text/template" id="script1">
<div style="color:black;"><%= try{ highlight.field1 } catch(e) { _source.field1 } %></div>
</script>
稍后编辑:突出显示并不总是可用。相反,_source字段始终可用。
此外,我使用的是backbone.js
,而views.js
位于我定义的内部:
DocumentView = Backbone.View.extend({
tagName : "div",
className: "document well",
initialize: function() {
this.model.bind('change', this.render, this);
this.model.bind('destroy', this.remove, this);
},
template: [_.template($("#script1").html())],
render : function() {
this.$el.html(this.template[0](this.model.toJSON()));
return this;
}
});
模型是:
{
"_index": "index1",
"_type": "doc",
"_id": "id1",
"_score": 10.139895,
"_source": {
"field1": "fieldValue1"
},
"highlight": {
"field1": [
"highlightedFieldValue1"
]
}
}
还有其他建议吗?
答案 0 :(得分:2)
我认为在我们的情况下try..catch是开销,你可以使用logical expressions
<script type="text/template" id="script1">
<div style="color:black;">
<% if (typeof highlight !== 'undefined' && highlight.field1) { %>
<%= highlight.field1.length ? highlight.field1[0] : highlight.field1 %>
<% } else if (typeof _source !== 'undefined' && _source.field1) { %>
<%= _source.field1 %>
<% } %>
</div>
</script>