Ir para conteúdo

POWERED BY:

Rodrigo Biaggio

Array com Javascript

Recommended Posts

Pessoal, alguém consegue me ajudar? Eu preciso pegar os dados de um array, mas não estou conseguindo. 

 

<!DOCTYPE html>
<!-- Inicio do html -->
<html lang="pt">
<!-- Inicio do head -->

<head>
    <meta charset="utf-8">
    <script src='https://kit.fontawesome.com/a076d05399.js'></script>
    <link rel="icon" type="imagem/png" href="images/dynatrace.png" />
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
    <script src="https://unpkg.com/@popperjs/core@2/dist/umd/popper.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://unpkg.com/@popperjs/core@2"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <!-- CSS Customizado -->
    <link href="css/ambiente-monitorado.css" rel="stylesheet">
</head>
<!-- Fim do head -->
<!-- Inicio do body -->

<body>    
    <header>
        <title>Dynatrace Managed</title>
        <!-- Inicio do nav fixado no topo-->
        <div id="nav">
            <nav class="navbar navbar-inverse navbar-fixed-top">
                <!-- Inicio div container-fluid -->
                <div class="container-fluid">
                    <div class="navbar-header">
                        <!-- Imagem do logo da Dynatrace a esquerda -->
                        <a class="navbar-brand" href="#"><img id="imagem-logo-dynatrace" src="images/dynatrace.png" width="30px" height="30px" alt="Logo Principal" title="Logo Dynatrace"></a>
                    </div>
                    <!-- Inicio ul nav com opções das páginas -->
                    <ul class="nav navbar-nav nav-custom">
                        <li><a href="index.html">Home</a></li>
                        <li class="active"><a href="ambiente-monitorado.html">Ambientes Monitorados</a>
                        <li><a href="arquitetura.html">Arquitetura Dynatrace</a></li>
                        <li><a href="#">Downtime</a></li>
                        <li><a href="#">Indicadores</a></li>
                        <li><a href="como-funciona.html">Licenças</a></li>
                        <li><a href="#">Métricas</a></li>
                    </ul>
                    <!-- Fim ul nav com opções das páginas -->
                    <!-- Inicio ul nav da diretia, com search e login -->
                    <ul class="nav navbar-nav navbar-right nav-custom">
                        <!-- Icone e botão login -->
                        <li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
                        <!-- Inicio form do search -->
                        <form class="navbar-form navbar-left" action="/action_page.php">
                            <div class="input-group">
                                <!-- Input do search -->
                                <input type="text" class="form-control" placeholder="Search" name="search">
                                <div class="input-group-btn">
                                    <!-- Botão de submit do search -->
                                    <button class="btn btn-default" type="submit">
                                        <!-- Icone do search -->
                                        <i class="glyphicon glyphicon-search"></i>
                                    </button>
                                </div>
                                <!-- Fim div input-group-btn -->
                            </div>
                            <!-- Fim div input-group -->
                        </form>
                        <!-- Fim form do search -->
                    </ul>
                    <!-- Fim ul nav da diretia, com search e login -->
                </div>
                <!-- Fim div container-fluid -->
            </nav>
        </div>
        <!-- Fim do nav fixado no topo-->
    </header>     
    <div id="div-main">
        <div id="div-botoes-pesquisa">
            <button class="button-title btn btn-info" id="button-buscar-licencas-ambiente" data-toggle="tooltip" aria-pressed="false"><i class="fas fa-bezier-curve fa-2x" aria-hidden="true" title="Por Ambiente"></i></button>
            <button class="button-title btn btn-info" id="button-buscar-licencas-servidor"><i class="fas fa-server fa-2x" aria-hidden="true" title="Por Servidor"></i></button><br><br>
            <input class="form-control mr-sm-2" type="text" id="input-search-host-group" name="filtro" placeholder="Filtrar"> 
        </div>
        <div id="div-mostra-total-licencas"></div>
        <div id="div-table-licencas" class="div-table-licencas table-responsive">
            <table class="table table-striped table-hover table-bordered" id="table-licencas">
                <thead>
                    <tr>
                        <th class="linha-titulo-tabela">Problema</th>
                        <th class="linha-titulo-tabela">Camada Impactada</th>
                        <th class="linha-titulo-tabela">Status</th>
                        <th class="linha-titulo-tabela">Tipo Erro</th>
                        <th class="linha-titulo-tabela">Usuários Impactados</th>
                    </tr>
                </thead>
                <tbody id="table-body">
                </tbody>
            </table>
        </div>
        <div id="demo"></div>
    </div> 
    <script src="js/api-get-problems.js"></script>
    <script src="js/disable-button.js"></script>
    <script src="js/filtrar-search-licencas.js"></script>
</body>
<!-- Fim do body -->
</html>
<!-- Fim do html -->
$(document).ready(function() {
    const Url='';
    $("#button-buscar-licencas-ambiente").click(function(){
        $.ajax({
            url: Url,
            type:"GET",
            success: function(result){
                console.log(result);
                var problema =  result.problems;
                var userimpactado = result.problems.impactAnalysis;                     
                $.each(problema, function(i, value) {
                    console.log('The value at arr[' + i + '] is: ' + value.displayId);
                    var newRow = $('<tr class="linha-table">');
                    var cols = "";
                    cols += '<td class="displayId" id="displayId">' + value.displayId + '</td>';
                    cols += '<td class="impactLevel" id="impactLevel">' + value.impactLevel + '</td>';
                    cols += '<td class="status" id="status">' + value.status + '</td>';
                    cols += '<td class="title" id="title">' + value.title + '</td>';
                    cols += '<td class="estimatedAffectedUsers" id="estimatedAffectedUsers">' + value.impactAnalysis.impacts.estimatedAffectedUsers + '</td>';
                    newRow.append(cols);
                    $("#table-licencas").append(newRow); 
                });                       
           },
        error:function(error){
            console.log('Error ${error}')
            
        }
    });
});
});

Preciso pegar as informações dos campos 

  • estimatedAffectedUsers: 
  • numberOfPotentiallyAffectedServiceCalls: 
 
Cada value.displayId pode ter 1 ou mais impactedEntity.
 
impactAnalysis: {
impacts: [
{
impactType: "SERVICE",
impactedEntity: {
entityId: {
id: "SERVICE-034769111916BA3B",
type: "SERVICE"
},
name: ""
},
estimatedAffectedUsers: 0,
numberOfPotentiallyAffectedServiceCalls: 4496
},
{
impactType: "APPLICATION",
impactedEntity: {
entityId: {
id: "APPLICATION-A8D06FDBBA2EE7F6",
type: "APPLICATION"
},
name: ""
},
estimatedAffectedUsers: 2
},
{
impactType: "SERVICE",
impactedEntity: {
entityId: {
id: "SERVICE-B7A98E7FDD81118A",
type: "SERVICE"
},
name: "online-importer-server-v*"
},
estimatedAffectedUsers: 0,
numberOfPotentiallyAffectedServiceCalls: 775
},
{
impactType: "SERVICE",
impactedEntity: {
entityId: {
id: "SERVICE-D773255CD13D8968",
type: "SERVICE"
},
name: ""
},
estimatedAffectedUsers: 1,
numberOfPotentiallyAffectedServiceCalls: 34
}
]
 

Compartilhar este post


Link para o post
Compartilhar em outros sites

Sua duvida estrá incosistente

 

você postou um objeto que acredito ser o response, mas sua lógica tem muitas propriedades não presentes nesse objeto;

 

JS:

$.each(problema, function(i, value) {
    console.log('The value at arr[' + i + '] is: ' + value.displayId); // propriedade não existe no objeto
    var newRow = $('<tr class="linha-table">');
    var cols = "";
    cols += '<td class="displayId" id="displayId">' + value.displayId + '</td>';
    cols += '<td class="impactLevel" id="impactLevel">' + value.impactLevel + '</td>'; // propriedade não existe no objeto
    cols += '<td class="status" id="status">' + value.status + '</td>'; // propriedade não existe no objeto
    cols += '<td class="title" id="title">' + value.title + '</td>'; // propriedade não existe no objeto
    cols += '<td class="estimatedAffectedUsers" id="estimatedAffectedUsers">' + value.impactAnalysis.impacts.estimatedAffectedUsers + '</td>';
    newRow.append(cols);
    $("#table-licencas").append(newRow); 
});            

 

Objeto: e por favor né poste como código todo codigo e obejto a forma que colocou ficou ilegivel, e não entendi até agora porque flodou em 4 topicos repetidos pra postar uma duvida inconsistente.

impactAnalysis: {
    impacts: [{
        impactType: "SERVICE",
        impactedEntity: {
          entityId: {
            id: "SERVICE-034769111916BA3B",
            type: "SERVICE"
          },
          name: ""
        },
        estimatedAffectedUsers: 0,
        numberOfPotentiallyAffectedServiceCalls: 4496
      },
      {
        impactType: "APPLICATION",
        impactedEntity: {
          entityId: {
            id: "APPLICATION-A8D06FDBBA2EE7F6",
            type: "APPLICATION"
          },
          name: ""
        },
        estimatedAffectedUsers: 2
      },
      {
        impactType: "SERVICE",
        impactedEntity: {
          entityId: {
            id: "SERVICE-B7A98E7FDD81118A",
            type: "SERVICE"
          },
          name: "online-importer-server-v*"
        },
        estimatedAffectedUsers: 0,
        numberOfPotentiallyAffectedServiceCalls: 775
      },
      {
        impactType: "SERVICE",
        impactedEntity: {
          entityId: {
            id: "SERVICE-D773255CD13D8968",
            type: "SERVICE"
          },
          name: ""
        },
        estimatedAffectedUsers: 1,
        numberOfPotentiallyAffectedServiceCalls: 34
      }
    ]
  }

 

Compartilhar este post


Link para o post
Compartilhar em outros sites

Crie uma conta ou entre para comentar

Você precisar ser um membro para fazer um comentário

Criar uma conta

Crie uma nova conta em nossa comunidade. É fácil!

Crie uma nova conta

Entrar

Já tem uma conta? Faça o login.

Entrar Agora

  • Conteúdo Similar

    • Por violin101
      Caros amigos, saudações.

      Estou com uma dúvida, referente cálculo de valores em tempo real.

      Tenho uma rotina, que faz o cálculo, o problema é mostrar o resultado.

      Quero mostrar o RESULTADO assim: 0,00  ou  0.00

      Abaixo posto o código.
      jQuery('input').on('keyup',function(){ //Remover ponto e trocar a virgula por ponto var m = document.getElementById("pgRest").value; while (m.indexOf(".") >= 0) { m = m.replace(".", ""); } m = m.replace(",","."); //Remover ponto e trocar a virgula por ponto var j = document.getElementById("pgDsct").value; while (j.indexOf(".") >= 0) { j = j.replace(".", ""); } j = j.replace(",","."); m = parseFloat(jQuery('#pgRest').val() != '' ? jQuery('#pgRest').val() : 0); j = parseFloat(jQuery('#pgDsct').val() != '' ? jQuery('#pgDsct').val() : 0); //Mostra o Resultado em Tempo Real jQuery('#pgTroco').val(m - j); <<=== aqui estou errando })  
       
      Grato,
       
      Cesar
       
       
    • Por violin101
      Caro amigos, saudações.

      Tenho uma tabela escrita em JS que funciona corretamente.
       
      Minha dúvida:
      - como devo fazer para quando a Tabela HTML estiver vazia, exibir o LOGO da Empresa ?

      Abaixo posto o script:
      document.addEventListener( 'keydown', evt => { if (!evt.ctrlKey || evt.key !== 'i' ) return;// Não é Ctrl+A, portanto interrompemos o script evt.preventDefault(); //Chama a Função Calcular Qtde X Valor Venda calcvda(); var idProdutos = document.getElementById("idProdutos").value; var descricao = document.getElementById("descricao").value; var prd_unid = document.getElementById("prd_unid").value; var estoque_atual = document.getElementById("estoque_atual").value; var qtde = document.getElementById("qtde").value; var vlrunit = document.getElementById("vlrunit").value; var vlrtotals = document.getElementById("vlrtotal").value; var vlrtotal = vlrtotals.toLocaleString('pt-br', {minimumFractionDigits: 2}); if(validarConsumo(estoque_atual)){ //Chama a Modal com Alerta. $("#modal_qtdemaior").modal(); } else { if(qtde == "" || vlrunit == "" || vlrtotal == ""){ //Chama a Modal com Alerta. $("#modal_quantidade").modal(); } else { //Monta a Tabela com os Itens html = "<tr style='font-size:13px;'>"; html += "<td width='10%' height='10' style='text-align:center;'>"+ "<input type='hidden' name='id_prds[]' value='"+idProdutos+"'>"+idProdutos+"</td>"; html += "<td width='47%' height='10'>"+ "<input type='hidden' name='descricao[]' value='"+descricao+"'>"+descricao+ "<input type='hidden' name='esp[]' value='"+prd_unid+"'> - ESP:"+prd_unid+ "<input type='hidden' name='estoq[]' value='"+estoque_atual+"'></td>"; html += "<td width='10%' height='10' style='text-align:center;'>"+ "<input type='hidden' name='qtde[]' value='"+qtde+"'>"+qtde+"</td>"; html += "<td width='12%' height='10' style='text-align:right;'>"+ "<input type='hidden' name='vlrunit[]' value='"+vlrunit+"'>"+vlrunit+"</td>"; html += "<td width='14%' height='10' style='text-align:right;'>"+ "<input type='hidden' name='vlrtotal[]' value='"+vlrtotal+"'>"+vlrtotal+"</td>"; html += "<td width='12%' height='10' style='text-align:center;'>"+ "<button type='button' class='btn btn-uvas btn-remove-produto' style='margin-right:1%; padding:1px 3px; font-size:12px;' title='Remover Item da Lista'>"+ "<span class='fa fa-minus' style='font-size:12px;'></span></button></td>"; html += "</tr>"; $("#tbventas tbody").append(html); //Função para Somar os Itens do Lançamento somar(); $("#idProdutos").val(null); $("#descricao").val(null); $("#prd_unid").val(null); $("#qtde").val(null); $("#vlrunit").val(null); $("#vlrtotal").val(null); $("#idProdutos").focus(); //Se INCLUIR NOVO produto - Limpa a Forma de Pagamento $("#pgSoma").val(null); $("#pgRest").val(null); $("#pgDsct").val(null); $("#pgTroco").val(null); $("#tbpagar tbody").empty(); }//Fim do IF-qtde }//Fim do Validar Consumo });//Fim da Função btn-agregar  
      Grato,

      Cesar
       
    • Por violin101
      Caros amigos, saudações.

      Estou com uma pequena dúvida se é possível ser realizado.

      Preciso passar 2 IDs para o Sistema executar a função, estou utilizando desta forma e gostaria de saber como faço via JS para passar os parâmetro que preciso.

      Observação:
      Dentro da TABELA utilizei 2 Forms, para passar os IDS que preciso, funcionou conforme código abaixo.
      <div class="card-body"> <table id="tab_clie" class="table table-bordered table-hover"> <thead> <tr> <th style="text-align:center; width:10%;">Pedido Nº</th> <th style="text-align:center; width:10%;">Data Pedido</th> <th style="text-align:center; width:32%;">Fornecedor</th> <th style="text-align:center; width:10%;">Status</th> <th style="text-align:center; width:5%;">Ação</th> </tr> </thead> <tbody> <?php foreach ($results as $r) { $dta_ped = date(('d/m/Y'), strtotime($r->dataPedido)); switch ($r->pd_status) { case '1': $status = '&nbsp;&nbsp;Aberto&nbsp;&nbsp;'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#000000'; //Cor: Preta break; case '2': $status = 'Atendido Total'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#086108'; //Cor: Verde break; case '3': $status = 'Atendido Parcial'; $txt = '#000000'; //Cor: Branco $cor = '#FEA118'; //Cor: Amarelo break; default: $status = 'Cancelado'; $txt = '#FFFFFF'; //Cor: Branco $cor = '#D20101'; //Cor: Vermelho break; } echo '<tr>'; echo '<td width="10%" height="10" style="text-align:center;">'.$r->pd_numero.'</td>'; echo '<td width="10%" height="10" style="text-align:center;">'.$dta_ped.'</td>'; echo '<td width="32%" height="10" style="text-align:left;">'.$r->nome.'</td>'; echo '<td width="10%" height="10" style="text-align:left;"><span class="badge" style="color:'.$txt.'; background-color:'.$cor.'; border-color:'.$cor.'">'.$status.'</span></td>'; echo '<td width="5%" style="text-align:center;">'; ?> <div class="row"> <?php if($this->permission->checkPermission($this->session->userdata('permissao'), 'vPedido')){ ?> <form action="<?= base_url() ?>compras/pedidos/visualizar" method="POST" > <input type="hidden" name="idPedido" value="<?php echo $r->idPedidos; ?>"> <input type="hidden" name="nrPedido" value="<?php echo $r->pd_numero; ?>"> <button class="btn btn-warning" title="Visualizar" style="margin-left:50%; padding: 1px 3px;"><i class="fa fa-search icon-white"></i></button> </form> <?php } if($this->permission->checkPermission($this->session->userdata('permissao'), 'ePedido')){ ?> <form action="<?= base_url() ?>compras/pedidos/editar" method="POST" > <input type="hidden" name="idPedido" value="<?php echo $r->idPedidos; ?>"> <input type="hidden" name="nrPedido" value="<?php echo $r->pd_numero; ?>"> <button class="btn btn-primary" title="Editar" style="margin-left:50%; padding: 1px 3px;"><i class="fa fa-edit icon-white"></i></button> </form> <?php } ?> </div> <?php echo '</td>'; echo '</tr>'; } ?> </tbody> </table> </div>
      Grato,

      Cesar.
    • Por belann
      Olá!
       
      Estou usando o editor quill em uma página html, sem fazer a instalação com npm, mas usando as api´s via internet com http, no entanto não consigo fazer a tecla enter funcionar para mudança de linha, tentei essa configuração abaixo, mas não funcionou.
       
      modules: {       syntax: true,       toolbar: '#toolbar-container',       keyboard: {         bindings: {           enter: {             key: 13,             handler: function(range, context) {                       quill.formatLine(range.index, range.length, { 'align': '' });             }           }  
       
    • Por violin101
      Caros amigos, saudações.
       
      Gostaria de poder tirar uma dúvida com os amigos.
       
      Como faço uma função para Comparar a Data Digitada pelo o Usuário com a Data Atual ?

      Data Digitada:  01/09/2024
       
      Exemplo:
      25/09/2024 é menor que DATA Atual  ====> mensagem: informe uma data válida.
      25/09/2024 é igual DATA Atual ===> o sistema libera os INPUT's.
       
      Como faço uma comparação com a Data Atual, para não Deixar Gravar Data retroativa a data Atual.
       
      Grato,
       
      Cesar
×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.