我正在尝试使用以下内容创建查询 - https://www.visualstudio.com/en-us/docs/integrate/extensions/reference/client/api/tfs/workitemtracking/restclient/workitemtrackinghttpclient2_2#method_createQuery
我正在使用上面开发一个vsts扩展。这是代码 -
import { QueryHierarchyItem } from "TFS/WorkItemTracking/Contracts";
var postedQuery = [
{
"children": [],
"clauses": {
"field": {
"referenceName": "System.WorkItemType",
"name": "Work Item Type",
"url": "https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_apis/wit/fields/System.WorkItemType"
},
"operator": {
"referenceName": "SupportedOperations.Equals",
"name": "="
},
"value": "Bug"
},
"columns": [
{
"referenceName": "System.Id",
"name": "ID",
"url": "https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_apis/wit/fields/System.Id"
},
{
"referenceName": "System.Title",
"name": "Title",
"url": "https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_apis/wit/fields/System.Title"
},
{
"referenceName": "System.State",
"name": "State",
"url": "https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_apis/wit/fields/System.State"
}
],
"createdBy": {
"id": "d291b0c4-a05c-4ea6-8df1-4b41d5f39eff",
"displayName": "Jamal Hartnett <fabrikamfiber4@hotmail.com>"
},
"createdDate": "2016-06 - 01T16: 58:56.64Z",
"filterOptions": "WorkItems",
"hasChildren": false,
"id": "df60fdf6-3b5f-4928-aae8-29ee63df6e31",
"isDeleted": false,
"isFolder": false,
"isInvalidSyntax": true,
"isPublic": false,
"lastModifiedBy": {
"id": "d291b0c4-a05c-4ea6-8df1-4b41d5f39eff",
"displayName": "Jamal Hartnett <fabrikamfiber4@hotmail.com>"
},
"lastModifiedDate": "2016-06 - 01T16: 58:56.64Z",
"name": "All Bugs",
"path": "Shared Queries",
"queryType": "flat",
"sortColumns": [
{
"field": {
"referenceName": "Microsoft.VSTS.Common.Priority",
"name": "Priority",
"url": "https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_apis/wit/fields/Microsoft.VSTS.Common.Priority"
},
"descending": false
},
{
"field": {
"referenceName": "System.CreatedDate",
"name": "Created Date",
"url": "https://fabrikam-fiber-inc.visualstudio.com/DefaultCollection/_apis/wit/fields/System.CreatedDate"
},
"descending": true
}
],
"wiql": "Select [System.Id], [System.Title], [System.State] From WorkItems Where [System.WorkItemType] = 'Bug' order by [Microsoft.VSTS.Common.Priority] asc, [System.CreatedDate] desc",
}
]
let queryPath = "Shared Queries";
let Query: QueryHierarchyItem = postedQuery;
client.createQuery(Query, "Team_P1", queryPath).then((wi) => {
},
(query) => {
});
答案 0 :(得分:0)
默认情况下,tsc编译器会将错误消息截断为100个字符。
您可以通过在 tsconfig.json 文件的"noErrorTruncation": true
属性中设置compilerOptions
来更改它。
有关详细信息,请参阅Typescript Compiler Options
现在出现错误信息(美化后)
'类型'
{ "children": any[]; "clauses": { "field": { "referenceName": string; "name": string; "url": string; }; "operator": { "referenceName": string; "name": string; }; "value": string; }; "columns": { "referenceName": string; "name": string; "url": string; }[]; "createdBy": { "id": string; "displayName": string; }; "createdDate": string; "filterOptions": string; "hasChildren": boolean; "id": string; "isDeleted": boolean; "isFolder": boolean; "isInvalidSyntax": boolean; "isPublic": boolean; "lastModifiedBy": { "id": string; "displayName": string; }; "lastModifiedDate": string; "name": string; "path": string; "queryType": string; "sortColumns": { "field": { "referenceName": string; "name": string; "url": string; }; "descending": boolean; }[]; "wiql": string; }[]
'不能分配给'QueryHierarchyItem'类型。 [重复类型]类型中缺少属性“children
”。 “
您将postedQuery
声明为数组[]
而将QueryHierarchyItem
声明为属性children
缺失的原因。
如果删除阵列,则会出现缺少属性的新错误消息,依此类推。
顺便说一下,根据this link看起来你不需要创建整个对象,你可以创建一个空对象来分配所需的参数。
let queryPath = "Shared Queries";
let query: <QueryHierarchyItem>{};
query.Name = 'Query Name';
query.wiql = '...'
client.createQuery(query, "Team_P1", queryPath)
.then(wi => {
console.log(wi);
}, q => {
console.log(q);
});
答案 1 :(得分:0)
首先,你可以参考西里尔的答案。
其次,您可以参考此代码:
let Query:any={
name:"Api Query",
wiql: "Select [System.Id], [System.Title], [System.State] From WorkItems Where [System.WorkItemType] = 'Bug' order by [Microsoft.VSTS.Common.Priority] asc, [System.CreatedDate] desc"
};
let queryPath = "Shared Queries";
client.createQuery(Query, "Team_P1", queryPath).then((wi) => {
},
(query) => {
});