我有一个谷歌地图方向服务我正在尝试转换为Observable模式。以下是https://developers.google.com/maps/documentation/javascript/examples/directions-simple的示例:
function calculateAndDisplayRoute(directionsService, directionsDisplay) {
directionsService.route({
origin: document.getElementById('start').value,
destination: document.getElementById('end').value,
travelMode: 'DRIVING'
}, function(response, status) {
if (status === 'OK') {
directionsDisplay.setDirections(response);
} else {
window.alert('Directions request failed due to ' + status);
}
});
}
我尝试了以下内容:
import { Observable } from 'rxjs/Observable';
...
// the callback version works
getRoute (route: any) {
const defaults = { 'travelMode': 'WALKING' };
route = Object.assign(defaults, route);
this._directionsService.route(
route
, (res:any, status:string) => {
if (status == 'OK')
this.displayRoute(res);
else
this.handleError(res)
})
}
// the Observable version doesn't get past typescript
getRoute$ (route: any) {
const defaults = { 'travelMode': 'WALKING' };
route = Object.assign(defaults, route);
let route$ = Observable.bindCallback(
this._directionsService.route
, (res, status)=>{res, status}
);
// TS says, "Supplied parameters do not match any signature of call target
route$( route ).subscribe(
(resp:any)=>{
// also, how do I throw an error from the selector func?
if (resp.status == 'OK')
this.displayRoute(resp.res);
else
this.handleError(resp.res)
}
)
}
为什么打字稿会拒绝这种模式?
答案 0 :(得分:2)
我在尝试使用bindCallback时只处理了同样的错误。我通过显式指定指向bindCallback结果的var的类型来解决它。我刚用过#34;任何"。在您的情况下,请尝试
let route$ : any = Observable.bindCallback(...)
这并不能解释为什么 Typescript会拒绝它。我猜它是因为bindCallback结果的类型定义是参数化的(即,它们通常是一般类型)。看看BoundCallbackObservable.d.ts看看我的意思。请注意所有那些重载的参数化定义"创建"方法(其中一个最终被调用的方法)。
答案 1 :(得分:1)
在rxjs 5中,您可以通过履行以下类型签名来解决此问题。
static create<T, R>(callbackFunc: (v1: T, callback: (result: R) => any) => any, selector?: void, scheduler?: IScheduler): (v1: T) => Observable<R>;
请注意,为了返回一个返回T
的参数类型为Observable<R>
的回调,需要两种类型。
type routeType = String
interface returnType = {
res: any
status: any
}
let route$: any = Observable.bindCallback<routeType, observableType>(this._directionsService.route, (res, status)=>{res, status})
现在route$
的类型为(v1: routeType) => Observable<observableType>