Skip to main content

Why is my insertRow method adding blank cells to my table?

I am trying to add the results from a fetch request into a new row in a table. However, When I run the function to do that, the first click adds a blank row instead of adding my desired data. Additionally, the data that I would have liked to add gets added the next time the function is ran. I have no idea what is wrong and I have tried so many things. I believe this problem is causing my other function called "total()" to return an error as the first cell is undefined instead of containing a value.

Here is my javascript:

document.getElementById('getFood').addEventListener('click', getFood);
document.getElementById('getFood').addEventListener('click', total);
/*function getText() {
  $.ajax({
    method: 'GET',
    url:
      'https://api.api-ninjas.com/v1/nutrition?query=' +
      document.getElementById('foodInput'),
    headers: { 'X-Api-Key': 'vrtwcc/pVgAr2o/a4dEyYA==hR1m7lLVdU4ho4hW' },
    contentType: 'application/json',
    success: function (result) {
      console.log(result);
    },
    error: function ajaxError(jqXHR) {
      console.error('Error: ', jqXHR.responseText);
    },
  });
}*/
/*function getFood(foodName) {
  let xhr = new XMLHttpRequest();
  xhr.open(
    'get',
    'https://api.api-ninjas.com/v1/nutrition?query=' + foodName,
    true
  );

  xhr.send();
  xhr.addEventListener('load', function () {
    console.log(xhr.responseText);
  });
}
getFood('fries');*/
function getFood() {
  fetch(
    'https://api.api-ninjas.com/v1/nutrition?query=' +
      `${document.getElementById('foodInput').value}`,
    {
      method: 'GET',
      headers: { 'X-Api-Key': 'vrtwcc/pVgAr2o/a4dEyYA==hR1m7lLVdU4ho4hW' },
      contentType: 'application/json',
    }
  )
    .then((res) => res.json())
    .then((data) => {
      foodQuery = data[0].name;
      calorieQuery = `${data[0].calories} calories`;
    });
  let table = document
    .getElementById('foodTable')
    .getElementsByTagName('tbody')[0];
  let row = table.insertRow(0);
  var cell1 = row.insertCell(0);
  var cell2 = row.insertCell(1);
  cell1.innerHTML = foodQuery;
  cell2.innerHTML = calorieQuery;

  // row.insertCell(0).innerHTML = foodQuery;
  // row.insertCell(1).innerHTML = calorieQuery;
  //document.getElementById('foodInput').value = '';
}
function total() {
  let table = document.getElementById('foodTable');
  let total = 0;
  for (let i = 1; i < table.rows.length; i++) {
    total += Number(table.rows[i].cells[2].innerText);
  }
  document.getElementById('tableTotal').value = total;
}

and here is my HTML:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <script
      src="https://code.jquery.com/jquery-3.6.3.js"
      integrity="sha256-nQLuAZGRRcILA+6dMBOvcRh5Pe310sBpanc6+QBmyVM="
      crossorigin="anonymous"
    ></script>
    <link
      rel="stylesheet"
      href="node_modules/bootstrap/dist/css/bootstrap.css"
    />

    <link rel="stylesheet" href="style.css" />

    <title>Document</title>
  </head>
  <body>
    <div class="container-fluid border border-primary">
      <strong>Jason's Calorie Counter </strong><br />
      <form>
        <div class="form-group" id="">
          <label>Food Selection</label>
          <input
            class="form-control"
            id="foodInput"
            placeholder="Enter food here"
          />
          <small id="foodHelp" class="form-text text-muted"
            >Nutrition data for each food item is scaled to 100g unless a
            quantity is specified
          </small>
          <br />
          <button type="button" class="btn btn-primary" id="getFood">
            Get Food
          </button>
        </div>
      </form>
    </div>
    <table class="table table-bordered" id="foodTable">
      <thead>
        <tr>
          <th scope="col">Food</th>
          <th scope="col">Calories</th>
        </tr>
      </thead>
      <tbody>
        <tr id="rows1">
          <td colspan="2" id="tableTotal">Total</td>
        </tr>
      </tbody>
    </table>

    <script
      src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js"
      integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
      crossorigin="anonymous"
    ></script>
    <script
      src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
      integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
      crossorigin="anonymous"
    ></script>
    <script src="script.js"></script>
  </body>
</html>

One more important detail: The new row gets added correctly when just adding a string, so it may have to do with the variable or the fetch request. Thank you very much for your time and if there is more information that is missing, please tell me and I will do my best to add it.

I have tried changing the type of data being added, adding them to different parts of the table, changing syntax, etc..

Via Active questions tagged javascript - Stack Overflow https://ift.tt/MSBcpkj

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...