类型脚本接口和类之间的区别是什么? 我什么时候使用 我什么时候使用接口? 它们的优点是什么?
我需要为后端服务器的 http 请求创建一些类型(使用 Angular 2) ,比如: },
"fields": {
"project": {
"id": "10000"
},
"summary": "something's wrong",
"issuetype": {
"id": "10000"
},
"assignee": { // not neccesary required
"name": "homer"
},
"reporter": {
"name": "smithers"
},
"priority": { // not neccesary required
"id": "20000"
}
}
我应该用什么来建立这些模型? 谢谢!