我想显示一个包含与编辑项目对应的数据的表单。我ui-router
用于路由。我定义了一个状态:
myapp.config(function($stateProvider) {
$stateProvider.
.state('layout.propertyedit', {
url: "/properties/:propertyId",
views : {
"contentView@": {
templateUrl : 'partials/content2.html',
controller: 'PropertyController'
}
}
});
在PropertyController
中,我想$scope.property
使用来自以下调用(Google Cloud Endpoints)的数据进行设置:
gapi.client.realestate.get(propertyId).execute(function(resp) {
console.log(resp);
});
不知道能不能用resolve
,因为数据是异步返回的。我试过了
resolve: {
propertyData: function() {
return gapi.client.realestate.get(propertyId).execute(function(resp) {
console.log(resp);
});
}
}
第一个问题,propertyId
未定义。你如何propertyId
从url: "/properties/:propertyId"
?
基本上我想设置异步调用返回的$scope.property
对象。PropertyController
resp
编辑:
myapp.controller('PropertyController', function($scope, , $stateParams, $q) {
$scope.property = {};
$scope.create = function(property) {
}
$scope.update = function(property) {
}
function loadData() {
var deferred = $q.defer();
gapi.client.realestate.get({'id': '11'}).execute(function(resp) {
deferred.resolve(resp);
});
$scope.property = deferred.promise;
}
});