gpt4 book ai didi

javascript - Angularjs/ASP.NET : How can I read a json returned from my controller and set it to a variable?

转载 作者:行者123 更新时间:2023-12-03 06:21:26 26 4
gpt4 key购买 nike

我正在使用 asp.net mvc 5,并且 Controller 中有一个返回 Json 对象的函数。我还在我的 javascript 中使用 Angular,并且尝试声明一个等于从读取 Json 文件返回的文本的变量。我是编码新手,任何帮助将不胜感激。

最佳答案

我在 mvc 中执行此操作的方式是我有这样的 js 服务:

angular.module('Something')
.controller('SomethingController', ['$scope', 'SomethingService', 'Notification', 'Enum', ....

而不是从服务中调用您的 cs Controller :

        somethingService.getSomthing().then(function (data) {
$scope.value = data.Somthing;
});

服务:

angular.module('Something')
.factory('SomethingService', ['$http', 'Notification', function ($http, Notification) {
return { getSomething: function () {
var promise = $http.post('../../Area/Something/GetSomething')
.then(function (response) {
return response.data;
}, function (error) {
Notification.error("We encountered an error while retrieving Something", error);
});
return promise;
}
};
}
]);

服务将调用cs Controller

关于javascript - Angularjs/ASP.NET : How can I read a json returned from my controller and set it to a variable?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38858507/

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