0

大家好,我正试图在我的 gsp 搜索查询中转义双引号,到目前为止,我有:

<input id="q" name="q" type="text" class="large" value="${params?.q?.encodeAsHTML()}" ..

但是当我进入我的 webapps 搜索字段并使用类似“abc”的查询时,我的日志文件中出现了大量异常,主要是:

 org.apache.lucene.queryParser.ParseException: Cannot parse '("abc) AND recstatus:"public"': Lexical error at line 1, column 30.  Encountered: <EOF> after : ""

2013-03-01 11:35:06,874 [New I/O  worker #3] DEBUG search.type  - [Helleyes] [some_index][3], node[BZH5bHO8RX2va-HVpTDEng], [P], s[STARTED]: Failed to execute 
[org.elasticsearch.action.search.SearchRequest@2f6a3595]
org.elasticsearch.transport.RemoteTransportException: [Lasher][inet[/xxx.xxx.x.xxx:9300]][search/phase/query]
Caused by: org.elasticsearch.search.SearchParseException: [some_index][3]: from[0],size[20]: Parse Failure [Failed to parse source [:)
^Eom@0<83>sizeA20<84>queryery_string"abc) AND recstatus:"public"<8f>analyze_wildcard#ields䴩tle]]

等..有什么建议吗?

4

2 回答 2

4

发现问题...

在 config.groovy 中有一个标志集:

grails.views.default.codec = "none"

这会覆盖 gsp 页面中的任何代码。

您可以将此标志设置为:

grails.views.default.codec = "html"

或覆盖单个 gsp 文件。

于 2013-03-01T12:57:32.357 回答
1

或者更好地使用 Grails 2.3+ 中的 raw() 方法http://mrhaki.blogspot.com.es/2013/11/grails-goodness-generating-raw-output.html ;)

<li${raw(' class="active"')}/>
于 2015-04-02T08:21:59.567 回答