gpt4 book ai didi

javascript - 在调用(图表)时,如何调试 "Cannot call method ' getPropertyValue' of null"

转载 作者:行者123 更新时间:2023-11-28 02:09:43 24 4
gpt4 key购买 nike

使用一个简单的示例来处理 nvd3.js ( line with view finder chart )。当我使用基本的单个 html 页面时,我可以让它工作,但是当我在自定义 angularjs 指令中使用它时,它会在 call(chart) 上失败,并出现错误 Uncaught TypeError: Cannot调用链接到 d3.v3.js 的 null 方法“getPropertyValue”(第 759 行)。

我无法发现代码或变量值的差异。 你能看出我哪里做错了吗? 我应该做什么来进一步调查?

非常感谢。

工作 html:(这是对 d3.json 的调用中的复制/粘贴)

<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<script src="novus-nvd3-e2dd47b/lib/d3.v3.js"></script>
<script src="novus-nvd3-e2dd47b/nv.d3.js" type="text/javascript">
<script src="novus-nvd3-e2dd47b/src/nv.d3.css" type="text/css">
<link href="novus-nvd3-e2dd47b/src/nv.d3.css" rel="stylesheet" type="text/css">
<script src="novus-nvd3-e2dd47b/src/nv.d3.js"></script>
</head>

<style>

body {
overflow-y:scroll;
}
text {
font: 12px sans-serif;
}
#chart svg {
height: 500px;
margin: 10px;
min-width: 100px;
min-height: 100px;

}
</style>
<body>

<div id="chart">
<svg> </svg>
</div>

<script src="novus-nvd3-e2dd47b/lib/d3.v3.js"></script>
<script src="novus-nvd3-e2dd47b/nv.d3.js"></script>
<script src="novus-nvd3-e2dd47b/src/utils.js"></script>
<script src="novus-nvd3-e2dd47b/src/tooltip.js"></script>
<script src="novus-nvd3-e2dd47b/src/models/legend.js"></script>
<script src="novus-nvd3-e2dd47b/src/models/axis.js"></script>
<script src="novus-nvd3-e2dd47b/src/models/scatter.js"></script>
<script src="novus-nvd3-e2dd47b/src/models/line.js"></script>
<script src="novus-nvd3-e2dd47b/src/models/historicalBar.js"></script>
<script src="novus-nvd3-e2dd47b/src/models/linePlusBarWithFocusChart.js"></script>
<script>
var testdata = d3.json("myjson.json", function(error, myjson) {
nv.addGraph(function() {
var chart = nv.models.lineWithFocusChart();

chart.xAxis
.tickFormat(d3.format('f'));

chart.yAxis
.tickFormat(d3.format(',.2f'));

chart.y2Axis
.tickFormat(d3.format(',.2f'));
console.log('select:', d3.select('#chart svg'));
d3.select('#chart svg')
.datum(myjson)
.transition().duration(500)
.call(chart);

nv.utils.windowResize(chart.update);

return chart;
});


});//end callback

</script>

这是我的自定义 Angular Directive(指令)。代码在调用(图表)时失败。

angular.module('app').directive 'lineChart',
['$log', ($log) ->
restrict: 'AE'
replace: true
scope: { data: '=data' }
link: (scope, element, attrs) ->
testdata = d3.json(scope.data, (error, json_data) ->
nv.addGraph( () ->
chart = nv.models.lineWithFocusChart()
chart.xAxis
.tickFormat(d3.format('f'))

chart.yAxis
.tickFormat(d3.format(',.2f'))

chart.y2Axis
.tickFormat(d3.format(',.2f'))

d3.select(element)
.datum(json_data)
.transition().duration(500)
.call(chart)

nv.utils.windowResize(chart.update)
return chart
)
)

]

我从模板中的 svg html 元素调用我的指令,如下所示:

 div(ng-controller='metricsController')
svg(line-chart, data='json_file')

一些值:d3.select(element) 和 element 看起来像这样:

select: 
[Array[1], select: function, selectAll: function, attr: function, classed: function, style: function…]
lineChart.js:21
element:
[svg.[object SVGAnimatedString], context: svg.[object SVGAnimatedString], jquery: "2.0.2", constructor: function, init: function, selector: ""…]

异常是在 d3.v3.js 的这个函数内引发的:

  d3_selectionPrototype.style = function(name, value, priority) {
var n = arguments.length;
if (n < 3) {
if (typeof name !== "string") {
if (n < 2) value = "";
for (priority in name) this.each(d3_selection_style(priority, name[priority], value));
return this;
}
if (n < 2) return d3_window.getComputedStyle(this.node(), null).getPropertyValue(name);
Uncaught TypeError: Cannot call method 'getPropertyValue' of null
priority = "";
}
return this.each(d3_selection_style(name, value, priority));
};

最佳答案

我终于明白了。该问题是由于在 Angular 指令中使用 element 造成的。正如我的 Angular 书中所解释的:

“传递给指令的 link 函数的 element 是对 native DOM 元素的包装引用。[...]_这些是您已经使用过的 JQuery 元素如果您需要直接访问原始 DOM 元素,您可以通过使用 element[0] 访问对象的第一个元素来获取它。”

所以我必须使用element[0]

关于javascript - 在调用(图表)时,如何调试 "Cannot call method ' getPropertyValue' of null",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17295445/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com