我在离子2的mobilefirst 8.0适配器上调用一个过程 我能够在设备中看到响应但不能在chrome中看到响应。请输入以下错误 ReferenceError:未定义WLResourceRequest .Below是我的代码
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { TransitPage } from '../transit/transit';
import { TrackDartPage } from '../track-dart/track-dart';
import { LocationFinderPage } from '../location-finder/location-finder';
import {Http} from '@angular/http';
import 'rxjs/add/operator/map';
declare var WLResourceRequest;
calladapter(){
var resourceRequest = new WLResourceRequest("/adapters/trackDart/status/" + 2,WLResourceRequest.GET);
resourceRequest.send().then((response) => {
alert(JSON.stringify(response.responseText));
},
function(error){
alert(JSON.stringify(error));
});
}
答案 0 :(得分:1)
由于错误我怀疑您正在运行离子服务,这导致您出现此错误,因为离子不了解MobileFirst。而是在运行 npm run watch 命令后运行 mfpdev app preview 。