一個簡單的問題,我敢肯定...Angular/javascript:從GET中讀取值
我想創建一個並使用我的MongoDB中的值加載它。 從colsole.log我相信,正在執行的查詢如預期,但正與填充...
function (a){Qa(a,"fn");h.then(function(b){a(b.data,b.status,b.headers,f)}); return h}
function (a){Qa(a,"fn");h.then(null,function(b){a(b.data,b.status,b.headers,f)}); return h}
的選擇角/ HTML
<select ng-model="selected" ng-options="opt as opt for opt in months" ng-init="selected='March'"></select>
和控制器
$scope.months = $http.get("/utility/monthList");
在此先感謝。
$ http.get( 「/效用/ monthList」),那麼(功能(響應){$ scope.months = response.data})。 –