gpt4 book ai didi

c - 如何通信 AngularJS 的 $http 路由和用 C 编程开发的 API

转载 作者:行者123 更新时间:2023-11-30 15:07:52 25 4
gpt4 key购买 nike

我使用 AngularJS、Bootstrap、HTML、CSS 制作了 Web 应用程序 GUI。后端团队正在用 C 编程开发 API。

那么我的 $http 请求(从工厂发送)中的路由将如何与 C 编程 API( Controller )通信以获取数据或执行相关操作。

谢谢!

最佳答案

您只需要 URI,异步请求将如下所示:

    $http.get('URI goes here').then(
function (response) {
//success
vm.data = response;
},
function (response) {
//fail
console.log("error");
}
);

关于c - 如何通信 AngularJS 的 $http 路由和用 C 编程开发的 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37850329/

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