首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >使用EJS将MySQL查询结果显示为HTML

使用EJS将MySQL查询结果显示为HTML
EN

Stack Overflow用户
提问于 2018-07-02 02:43:00
回答 1查看 1.3K关注 0票数 1

我正在构建一个与我在本地构建的MySQL数据库交互的应用程序(使用EJS视图引擎和Node.js)。我可以成功地将查询结果作为JSON字符串接收,但是我不能将信息发送到视图(以HTML格式显示),因为我收到错误: unsafefoods is not defined。

我的'app.js‘文件声明:

代码语言:javascript
复制
var unsafefoods = require('./routes/unsafefoods');
app.use('/unsafefoods', unsafefoods);

我的路由'unsafefoods.js‘声明:

代码语言:javascript
复制
var express = require('express');
var router = express.Router();

/* GET all safe foods */
router.get('/', function (req, res, next) {
	connection.query('SELECT * from appycavy.foods WHERE safe = 0', function (error, rows, fields) {
		if (error) {
			res.send(JSON.stringify({
				"status": 500,
				"error": error,
				"response": null
			}));
			//If there is error, we send the error in the error section with 500 status
		} else {
			res.render(unsafefoods, {
				title: 'Unsafe foods list',
				data: rows
			})
		}
	});
});

module.exports = router;

我的视图'unsafefoods.ejs‘声明:

代码语言:javascript
复制
<!DOCTYPE html>
<html lang="en">

<head>
  <% include ./partials/head %>
</head>

<body class="container">
  <header>
    <% include ./partials/header %>
  </header>
  <main>
    <div class="jumbotron">
      <h2>Safe foods</h2>
      <p>The following is a list of all
        <b>unsafe</b> foods
      </p>
      <!-- table to display unsafe foods -->
      <table width='80%' border=0>
 
        <tr style='text-align:left; background-color:#CCC'>
            <th>ID</th>
            <th>Name</th>
            <th>Safe</th>
            <th>Type</th>
            <th>Favourite</th>
            <th>Water</th>
            <th>Energy</th>
            <th>Vitamin C</th>
            <th>Sugar</th>
            <th>Lipid fat</th>
            <th>Calcium</th>
            <th>Phosphorus</th>
            <th>CaP ratio</th>
        </tr>
        
        <!--
            Using FOREACH LOOP for the users array
            
            myArray.forEach(function(el, index) {
                // el - current element, i - index
            });
        -->
        <% if (data) { %>
        <% data.forEach(function(unsafefoods){ %>
            <tr>
                <td><%= unsafefoods.id %></td>
                <td><%= unsafefoods.name %></td>
                <td><%= unsafefoods.safe %></td>
                <td><%= unsafefoods.type %></td>
                <td><%= unsafefoods.favourite %></td>
                <td><%= unsafefoods.water %></td>
                <td><%= unsafefoods.energy %></td>
                <td><%= unsafefoods.vitaminC %></td>
                <td><%= unsafefoods.sugars %></td>
                <td><%= unsafefoods.lipidFat %></td>
                <td><%= unsafefoods.calcium %></td>
                <td><%= unsafefoods.phosphorus %></td>
                <td><%= unsafefoods.capRatio %></td>
                <td>
                    <div style="float:left">
                        <a href='/unsafefoods/edit/<%= unsafefoods.id %>'>Edit</a> &nbsp;                            
                        <form method="post" action="/unsafefoods/delete/<%= unsafefoods.id %>" style="float:right">
                            <input type="submit" name="delete" value='Delete' onClick="return confirm('Are you sure you want to delete?')" />
                            <input type="hidden" name="_method" value="DELETE" />
                        </form>
                    </div>
                </td>
            </tr>
        <% }) %>
        <% } %>
     
    </table>
    </div>
  </main>
  <footer>
    <% include ./partials/footer %>
  </footer>
</body>

</html>

任何指针都将不胜感激,

谢谢,

EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/51126022

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档