Ionic2项目。我在打字稿中使用了InAppBrowser,而webview则基于tomcat服务器。我想从外部javascript函数调用typescript功能。我怎么称呼这个功能? 在我的代码下面。
import { Component, ViewChild, ElementRef } from '@angular/core';
import { NavController, Content } from 'ionic-angular';
import { InAppBrowser } from '@ionic-native/in-app-browser';
import * as $ from 'jquery';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
@ViewChild(Content) content: Content;
constructor(public navCtrl: NavController, private iab: InAppBrowser,
private elementRef : ElementRef) {
var ref = window.open(url, '_self', 'location=yes');
}
}
function getGPS(e):string { //the function returns a string
return "client getGPS func" ;
}
我只想在javascript函数中调用getGPS函数。 这是我的javascript代码。
umn2={
getGPS: function(){
document.getElementById("resultArea").value = //that is client part
}
};
请告诉我解决方案。谢谢。
答案 0 :(得分:0)
必须首先将TypeScript编译为Javascript。所以第一步是验证。
其次,您有两种不同的getGPS函数实现。
一个在umn2
对象上定义,另一个在Typescript代码中定义。
我认为它应该从typescript模块导出,可以从外部导入/使用。