我一直在跟踪walk through of how to hook up Angular and D3 together指令并且我已经显示了D3图表。但是,当我更改表单中的数据时,图表不会更新。有什么想法可能会发生这种情况吗?
budgetApp.directive('d3Vis', function () {
var r = 500,
format = d3.format(",d"),
fill = d3.scale.category20c();
var bubble = d3.layout.pack()
.sort(null)
.size([r, r])
.padding(1.5);
return {
restrict: 'E',
scope: {
val: '='
},
link: function (scope, element, attrs) {
var vis = d3.select(element[0]).append("svg")
.attr("width", r)
.attr("height", r)
.attr("class", "bubble");
scope.$watch('val', function (newVal, oldVal) {
// clear the elements inside of the directive
vis.selectAll('*').remove();
// if 'val' is undefined, exit
if (!newVal) {
return;
}
var node = vis.selectAll("g.node")
.data(bubble.nodes(classes(newVal))
.filter(function(d) {
return !d.children;
}))
.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) {
return "translate(" + d.x + "," + d.y + ")";
});
node.append("title")
.text(function(d) {
return d.className + ": " + format(d.value);
});
node.append("circle")
.attr("r", function(d) {
return d.r;
})
.style("fill", function(d) {
return fill(d.packageName);
});
node.append("text")
.attr("text-anchor", "middle")
.attr("dy", ".3em")
.text(function(d) {
return d.className.substring(0, d.r / 3);
});
// Helper function, returns a flattened hierarchy containing all leaf nodes under the root.
function classes(root) {
var classes = [];
function recurse(name, node) {
if (node.children) node.children.forEach(function(child) {
recurse(node.name, child);
});
else classes.push({
packageName: name,
className: node.name,
value: node.size
});
}
recurse(null, root);
return {
children: classes
};
}
}); // end watch
}
};
});
答案 0 :(得分:0)
由于您使用'='在隔离范围内设置了val
的双向数据绑定,然后您是$ watch()ing val
,我假设表单数据正在正确传播指令。
所以这可能是D3问题(在$ watch函数内),而不是Angular问题。 (我只熟悉Angular,但D3看起来很有趣。)
你的表格中确实有ng-model='val'
,但是对吗?
答案 1 :(得分:0)
您好我会粘贴那种'模板'我在用。考虑数据的观察者。您需要比较这些值,这是在将true设置为参数时完成的。
angular.module('myDirectives', [])
.directive('test', ['$window',
function ($window) {
return {
restrict: 'E',
scope: {
data: '=',
/* other attributes */
},
replace: false,
template: '<div id="mydirective"></div>',
link: function (scope, element, attrs) {
var svg = d3.select(element[0])
.append('svg')
.style('width', '100%')
var margin = parseInt(attrs.margin) || 20;
// Browser onresize event
$window.onresize = function () {
scope.$apply();
};
// New data
scope.$watch('data', function (newVals, oldVals) {
return scope.render(newVals);
}, true);
scope.$watch(function () {
return angular.element($window)[0].innerWidth;
}, function () {
scope.render(scope.data);
});
scope.render = function (data) {
// custom d3 code
svg.selectAll('*').remove();
if (!data) return;
var width = d3.select(element[0]).node().offsetWidth - margin,
}
}
};
}
])