Это странно. Он также немного длинный, поэтому извиняюсь заранее. обновление - в итоге это было 2 проблемы, см. мой ответ ниже.
Здесь моя ошибка: EXCEPTION: this.svg.selectAll(...).data(...).enter is not a function
У меня есть клиент angular -cli и сервер api node. Я могу получить файл states.json из службы с помощью наблюдаемого (код ниже). d3 нравится файл и отображает ожидаемую карту США.
В тот момент, когда я изменяю цель службы на моем сервере api из файла на bluemix-cloudant server, я получаю ошибку выше в моем клиенте.
Когда я console.log выводится в варианте с использованием ngOnInit, изначально mapData печатает как пустой массив и вызывается ошибка. Это очевидный источник ошибки, поскольку нет данных, но отладчик Chrome показывает запрос на получение запроса. Когда запрос завершается, данные печатаются так, как ожидалось в консоли.
- angular -cli version 1.0.0-beta.26
- angular версия ^ 2.3.1
- d3 version ^ 4.4.4
- версия rxjs ^ 5.0.1
map.component.ts:
import { Component, ElementRef, Input } from '@angular/core';
import * as D3 from 'd3';
import '../rxjs-operators';
import { MapService } from '../map.service';
@Component({
selector: 'map-component',
templateUrl: './map.component.html',
styleUrls: ['./map.component.css']
})
export class MapComponent {
errorMessage: string;
height;
host;
htmlElement: HTMLElement;
mapData;
margin;
projection;
path;
svg;
width;
constructor (private _element: ElementRef, private _mapService: MapService) {
this.host = D3.select(this._element.nativeElement);
this.getMapData();
this.setup();
this.buildSVG();
}
getMapData() {
this._mapService.getMapData()
.subscribe(
mapData => this.setMap(mapData),
error => this.errorMessage = <any>error
)
}
setup() {
this.margin = {
top: 15,
right: 50,
bottom: 40,
left: 50
};
this.width = document.querySelector('#map').clientWidth - this.margin.left - this.margin.right;
this.height = this.width * 0.6 - this.margin.bottom - this.margin.top;
}
buildSVG() {
this.host.html('');
this.svg = this.host.append('svg')
.attr('width', this.width + this.margin.left + this.margin.right)
.attr('height', this.height + this.margin.top + this.margin.bottom)
.append('g')
.attr('transform', 'translate(' + this.margin.left + ',' + this.margin.top + ')');
}
setMap(mapData) {
this.mapData = mapData;
this.projection = D3.geoAlbersUsa()
.translate([this.width /2 , this.height /2 ])
.scale(650);
this.path = D3.geoPath()
.projection(this.projection);
this.svg.selectAll('path')
.data(this.mapData.features)
.enter().append('path')
.attr('d', this.path)
.style('stroke', '#fff')
.style('stroke-width', '1')
.style('fill', 'lightgrey');
}
}
map.service.ts:
import { Http, Response } from '@angular/http';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
@Injectable()
export class MapService {
private url = 'http://localhost:3000/api/mapData';
private socket;
constructor (private _http: Http) { }
getMapData(): Observable<any> {
return this._http.get(this.url)
.map(this.extractData)
.catch(this.handleError);
}
private extractData(res: Response) {
let body = res.json();
return body.data || {};
}
private handleError(error: any) {
let errMsg = (error.message) ? error.message :
error.status ? `${error.status} - ${error.statusText}` : 'Server error';
console.error(errMsg);
return Promise.reject(errMsg);
}
}
Является ли это функцией Async, и вызов данных слишком длинен для d3?
У меня были надежды, что этот вопрос Uncaught TypeError: canvas.selectAll(...). data (...). enter не является функцией в d3, может дать некоторое представление, но я не вижу Любые.
Любая помощь или понимание очень ценятся!
EDIT: Вот скриншот раздела заголовков из запроса Chrome за метки ниже. На вкладке ответа отображаются данные, которые, как правило, отображаются как объект GeoJSON. Я также скопировал этот ответ в файл локально и использовал его в качестве источника карты с положительными результатами.
Тестирование данных до сих пор: файл GeoJSON (2.1mb)
- Локальный файл, локальный сервер: Успех (время ответа 54 мс)
- Тот же файл, удаленный сервер: ошибки D3 перед возвратом данных в браузер (750 мс)
- Запрос API с удаленного сервера: ошибки D3 перед возвратом данных в браузер (2.1 с)