我正在使用d3.js在svg中渲染世界地图(使用https://github.com/johan/world.geo.json/blob/master/countries.geo.json作为功能)。我将渲染逻辑封装在Backbone View中。当我渲染视图并将其附加到DOM时,虽然在查看生成的HTML时正确生成了SVG标记,但我的浏览器中没有显示任何内容。当没有封装在Backbone.View中时,这会很好。这是我使用Backbone.view的代码:
/**
* SVG Map view
*/
var MapView = Backbone.View.extend({
tagName: 'svg',
translationOffset: [480, 500],
zoomLevel: 1000,
/**
* Sets up the map projector and svg path generator
*/
initialize: function() {
this.projector = d3.geo.mercator();
this.path = d3.geo.path().projection(this.projector);
this.projector.translate(this.translationOffset);
this.projector.scale(this.zoomLevel);
},
/**
* Renders the map using the supplied features collection
*/
render: function() {
d3.select(this.el)
.selectAll('path')
.data(this.options.featureCollection.features)
.enter().append('path')
.attr('d', this.path);
},
/**
* Updates the zoom level
*/
zoom: function(level) {
this.projector.scale(this.zoomLevel = level);
},
/**
* Updates the translation offset
*/
pan: function(x, y) {
this.projector.translate([
this.translationOffset[0] += x,
this.translationOffset[1] += y
]);
},
/**
* Refreshes the map
*/
refresh: function() {
d3.select(this.el)
.selectAll('path')
.attr('d', this.path);
}
});
var map = new MapView({featureCollection: countryFeatureCollection});
map.$el.appendTo('body');
map.render();
这是有效的代码,不使用Backbone.View
var projector = d3.geo.mercator(),
path = d3.geo.path().projection(projector),
countries = d3.select('body').append('svg'),
zoomLevel = 1000;
coords = [480, 500];
projector.translate(coords);
projector.scale(zoomLevel);
countries.selectAll('path')
.data(countryFeatureCollection.features)
.enter().append('path')
.attr('d', path);
我还附上了生成的SVG标记的屏幕截图。知道这里可能出现什么问题吗?
编辑 - 这是重写的make方法,最终根据请求解决了这个问题:
/**
* Custom make method needed as backbone does not support creation of
* namespaced HTML elements.
*/
make: function(tagName, attributes, content) {
var el = document.createElementNS('http://www.w3.org/2000/svg', tagName);
if (attributes) $(el).attr(attributes);
if (content) $(el).html(content);
return el;
}
答案 0 :(得分:26)
问题是“svg”元素需要命名空间。 D3会自动执行此操作;当您追加“svg”元素时,它使用命名空间“http://www.w3.org/2000/svg”。有关详细信息,请参阅src/core/ns.js。不幸的是,Backbone似乎不支持命名空间元素。您想要更改view.make方法。然后,您需要在视图上使用namespaceURI属性来设置适当的命名空间,或者只是为SVG元素自动执行此操作以与HTML5解析器保持一致。
无论如何,对您的问题进行简单修复就是将SVG包装在DIV元素中,然后使用D3创建SVG元素。
答案 1 :(得分:4)
您可以在初始化函数中设置视图的元素,如下所示:
Backbone.View.extend({
// This is only for informaiton. The node will
// be raplaced in the initialize function.
tagName: 'svg',
initialize: function () {
this.setElement(
d3.select($('<div/>')[0]).append('svg')[0]
);
}
);
这具有明显的优势。
答案 2 :(得分:3)
查看http://jsfiddle.net/nocircleno/QsEp2/ 来自http://nocircleno.com/blog/svg-with-backbone-js/
Backbone.View.extend({
nameSpace: "http://www.w3.org/2000/svg",
_ensureElement: function() {
if (!this.el) {
var attrs = _.extend({}, _.result(this, 'attributes'));
if (this.id) attrs.id = _.result(this, 'id');
if (this.className) attrs['class'] = _.result(this, 'className');
var $el = $(window.document.createElementNS(_.result(this, 'nameSpace'), _.result(this, 'tagName'))).attr(attrs);
this.setElement($el, false);
} else {
this.setElement(_.result(this, 'el'), false);
}
}
});