gpt4 book ai didi

javascript - TypeScript 和 Angular 服务

转载 作者:行者123 更新时间:2023-11-30 16:49:43 24 4
gpt4 key购买 nike

当使用 TypeScriptAngularJS 编写服务时,您是否为请求和响应定义了一个模型?

因此,例如,给定以下从服务到 RESTFul 端点的服务调用:

module Application {
export module Services {
export class MyService {
public static $inject = ["$http"];

constructor(private $http: ng.IHttpService) {
}

getSomeData = (model: Models.RequestModel): ng.IPromise<Models.ResponseModel> => {
this.$http.post("url", model).then((response: ng.IHttpPromiseCallbackArg<Models.ResponseModel>) => {
return response.data;
});
}
}
}
}

所以基本上我发送 RequestModel 并接收回 ResponseModel

这是正确的用法/语法吗?

最佳答案

So basically I am sending the RequestModel and receiving back the ResponseModel, Would that be the proper use/syntax?

是的。请求输入, promise 响应输出。

关于javascript - TypeScript 和 Angular 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30720068/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com