作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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/
我是一名优秀的程序员,十分优秀!