Jira 中的 JQL 查询搜索
JQL query search in Jira
由于下面指定的错误,我无法在 Jira 中搜索此项。
Query: project = 'foo' and description ~ 'testing:'test''
Result: Error in the JQL Query: Expecting either 'OR' or 'AND' but got 'test'. (line 1, character 7
4)
我知道,双引号可以解决问题,但它在某些情况下不起作用,如下所示。
Query: project = 'foo' AND description ~ "TypeError: can only concatenate str (not "NoneType") to str"
Result: Error in the JQL Query: Expecting either 'OR' or 'AND' but got 'NoneType'. (line 1, character 106)
谁能帮我一个条件,无论里面给定什么,都可以作为字符串进行搜索?
注意:搜索语句在我的项目中不能交替
您的引号仍然有误,请尝试使用交替引号 ('/")
project = 'foo' AND description ~ 'TypeError: can only concatenate str (not "NoneType") to str'
第一个查询
project = 'foo' and description ~ "testing:'test'"
由于下面指定的错误,我无法在 Jira 中搜索此项。
Query: project = 'foo' and description ~ 'testing:'test''
Result: Error in the JQL Query: Expecting either 'OR' or 'AND' but got 'test'. (line 1, character 7
4)
我知道,双引号可以解决问题,但它在某些情况下不起作用,如下所示。
Query: project = 'foo' AND description ~ "TypeError: can only concatenate str (not "NoneType") to str"
Result: Error in the JQL Query: Expecting either 'OR' or 'AND' but got 'NoneType'. (line 1, character 106)
谁能帮我一个条件,无论里面给定什么,都可以作为字符串进行搜索?
注意:搜索语句在我的项目中不能交替
您的引号仍然有误,请尝试使用交替引号 ('/")
project = 'foo' AND description ~ 'TypeError: can only concatenate str (not "NoneType") to str'
第一个查询
project = 'foo' and description ~ "testing:'test'"