這是我在角度上的第一個項目。我已經創建了一個指令。我無法插入從RESTful API提供的對象中提取的值。如在控制檯中顯示的對象是這樣的,無法在Angular.js中使用檢索到的JSON對象
以下是必要的文件,
knob.js(指令)
angular.module('knob', [])
.directive('knob', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
element.knob({
fgColor: attrs.fgColor
});
}
}
})
dashboard.js (控制器)
myApp.controller('DashController', function($scope, $http, $cookies, $cookieStore) {
$http({
url: site + '/company/dashboard',
method: "GET",
transformRequest: encodeurl,
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}).success(function(data) {
console.log(data); //data has the object that i want to use
$scope.dash = data.count;
}).error(function(res) {
console.log(res);
});
});
dahboard.html(圖)
<li>
<div class="knob_contain">
<h4 class="knobs_title">Deals Left This Month</h4>
<input type="text" value="{{dash.profile}}" knob class="dial dialIndex">
</div>
</li>
我想count.profile值被綁定到我用我的旋鈕輸入類型。如果需要,我會給你更多的文件。
創建plunkr如果可能 – 2015-01-21 08:38:57
'' – 2015-01-21 08:45:01
它只是返回空白。 – 2015-01-21 08:54:31