@panunez wrote:
Buenas Noches, estoy tienendo un error al ejecutar mi app Alguien me podria ayudar??. Tengo una funcion en un archivo .js y la exporto de la siguiente manera en mi archivo .ts
import * as VuTotpSdk from ‘…/…/…/assets/js/VuServer’;
declare const VuTotpSdk: any; //Declaracion de parametro
@Component({
selector: ‘app-agregar-nuevo’,
templateUrl: ‘./agregar-nuevo.page.html’,
styleUrls: [’./agregar-nuevo.page.scss’],
})
export class AgregarNuevoPage implements OnInit {
constructor( private http: HttpClient) {
}
ngOnInit() {
}
AgregarNuevo() {
VuTotpSdk.getEncryptedSeed(this.serverUrl, this.cupon, this.code, this.seedCallback);
}
}Esta es la funcion que tengo definida en el archivo .js
(function (VuTotpSdk, $, undefined) {
/**
@param serverUrl
@param cupon
@param code
@param seedCallback
*/
VuTotpSdk.getEncryptedSeed = function(serverUrl, coupon, code, onSuccess, onFailure) {
var requestUrl = serverUrl + "/vuserver/activation.php?cupon=" + coupon; requestUrl += (code != undefined && code != null && code != "") ? "&bank=" + code : ""; requestUrl += "&callback=?"; $.ajax({ url: requestUrl, timeout: 20000, dataType: "json", success: function (data) { if (onFailure != undefined || onFailure != null) { if (data.indexOf("URL Incorrecta - contacte Soporte Security") >= 0) { onFailure("Código de Asociación incorrecto"); } else { onSuccess(data[0]); } } else { onSuccess(data[0]); } }, error: function (jqXHR, textStatus, errorThrown) { onFailure("Código de Asociación incorrecto"); } });
};
Posts: 2
Participants: 2