I have a file with functions jquery
, and I need some functions that are in it to use within controllers
in the angle, but always have JS error that functions are not defined.
jquery
$(document).ready(function () {
function alerta(msg){
if(!$('.pinfo').is(':visible')){
$('.pinfo').html(msg);
$('.pinfo').fadeIn( 500 ).delay( 3000 ).fadeOut( 500 );
}
}
});
Angular
(function () {
'use strict';
modulo
.controller("CarregaCamposController", CarregaCamposController);
function CarregaCamposController($scope, $http) {
var http = $http; //variavel conexão ajax escopo global
var tab;
var campos = [];
var rows_ = [];
$scope.rows = [];
try{
http
.get("json.php?action=1")
.then(function (result) {
if (result.status === 200) {
var dados = result.data;
dados.forEach(function (val, key) {
if (key !== 0) {// posição 0 do json sempre é preenchida com o nome da fabrica de relatórios
//montagem da tabela de campos para montagem do relatório
if (tab === "" || tab !== val.descricao[0]) { // Gera uma linha classificando os campos entre suas tabelas
campos.push({id: val.id[1], desc: val.descricao[1], tab: val.descricao[0], tipot: val.input, ct: "1"});
tab = val.descricao[0];
} else {
campos.push({id: val.id[1], desc: val.descricao[1], tab: val.descricao[0], tipot: val.input, ct: "0"});
}
}
});
$scope
.campos = campos;
} else {
alert("Erro ao carregar o arquivo JSON!");
}
});
}catch(e){
alert("Erro.:"+e);
}
$scope
.doConfirm = function(){
alerta("teste");
};
}
})();
I tried to import it so
import $ from 'funcs.js';
(function () {
'use strict';
modulo
.controller("CarregaCamposController", CarregaCamposController);
gave error
The controller with the name 'CarregaCamposController' is not registered.