我正在將一些Javascript代碼轉換爲Typescript。 這是一個很酷的Javascript函數,它使用d3並完美地包裝一個svg文本塊。通常我只是將「function」一詞改爲「private」,並且該函數將在Typescript中正常工作,但是這個函數只涉及getComputedTextLength()函數。如果有人能夠解釋我可以如何使這個函數在Typescript中爲自己和其他人工作,包括爲什麼我會收到錯誤,那將會很棒。 Visual Studio不提供任何幫助。謝謝。將Javascript函數轉換爲Typescript,包括getComputedTextLength()
function wrap(text, width) {
text.each(function() {
var text = d3.select(this),
words = text.text().split(/\s+/).reverse(),
word,
line = [],
lineNumber = 0,
lineHeight = 1.1, // ems
y = text.attr("y"),
x = text.attr("x"),
dy = parseFloat(text.attr("dy")),
tspan = text.text(null).append("tspan")
.attr("x", x).attr("y", y).attr("dy", dy + "em");
while (word = words.pop()) {
line.push(word);
tspan.text(line.join(" "));
if (tspan.node().getComputedTextLength() > width) {
line.pop();
tspan.text(line.join(" "));
line = [word];
tspan = text.append("tspan")
.attr("x", x).attr("y", y)
.attr("dy", ++lineNumber * lineHeight + dy + "em")
.text(word);
}
}
});
}
什麼是錯誤描述? – Buzinas
Property'getComputedTextLength'在類型'元素'上不存在 – blissweb
該代碼來自Mike Bostock https://bl.ocks.org/mbostock/7555321 – 0x4a6f4672