您可以使用该ng-model
属性将 API json 响应绑定到您的select
输入。
给定您的 HTML,我们会得到这个将绑定到person.timezone
.
<div ng-controller="MainController">
<select ng-model="person.timezone">
<option value="GMT-12:00">(GMT -12:00) Eniwetok, Kwajalein</option>
<option value="GMT-11:00">(GMT -11:00) Midway Island, Samoa</option>
<option value="GMT-10:00">(GMT -10:00) Hawaii</option>
<option value="GMT-9:00">(GMT -9:00) Alaska</option>
</select>
</div>
现在您需要控制器来实际调用 rest 服务并获取 person 对象:
function MainController($scope, $http) {
/* query rest api and retrive the person
this of course would be replaced with the url of your actual rest call */
$http({method: 'GET', url: 'rest_api_response.json'}).success(function(data, status, headers, config) {
$scope.person = data;
// dont apply if were in digest
if(!$scope.$$phase)
$scope.$apply();
}).
error(function(data, status, headers, config) {
console.log("error retriveing rest api response");
});
}
对于这个示例,我刚刚制作了一个名为的文件"rest_api_response.json"
,其中包含您的回复
{
"language" : "en_US",
"timezone" : "GMT-9:00"
}
这是一个包含样本的 plunker