1

私はAngularjsを初めて使用します。client.js という外部 Java スクリプトがあります。このファイルには機能があります

function Client() {
_instance_ = this;
this.client = null;
this.clientType = null;
}

ArcotClient.prototype.setAttribute = function(key, value, value2) {
 if (key.toLowerCase() == "flashupdateurl") {
    if (value != null) {
        this.flashUpdateURL = value;
    }
} else if (key.toLowerCase() == "javainstallurl") {
    if (value != null) {
        this.javaInstallURL = value;
    }
} 
ArcotClient.prototype.getVersion(){

   return version;
}
}

angularjsコントローラーファイルで、client.jsで宣言された関数にアクセスしたい

var client = new Client();
client.getVersion();

これを達成する方法を教えてください。

4

1 に答える 1