我的要求是如何从mvc控制器将一些数据传递给角度控制器。所以在角度html视图中我可以使用该参数并从我的web api服务中搜索数据。 截至目前,我的角度视图打开为空白。并根据用户选择,它从服务中获取数据。
但是现在我需要在html view的加载上传递一些默认参数。所以它应该打开一些数据。
所以我怎么能这样做。
以下是我的控制器代码。
app.controller('SearchController', ['$scope','$http',function ($scope, $http) {
$scope.sessionGuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
$scope.searchValue = "";
$scope.stockNumber = "";
$scope.searchRequest = {
Criteria: [],
resultsTabIndex: 0,
orderBy: "sortbypopularity"
};
由于
答案 0 :(得分:0)
最后我是饼干。我从我的mvc动作方法创建一个cookie,需要从我的角度控制器读取。