如何在HBS模板中显示数据?

时间:2018-10-29 17:41:50

标签: javascript node.js typescript handlebars.js nestjs

需要一些帮助,我正在尝试在模板中显示数据,但是它不起作用。我在MySQL上使用NestJS。

这是控制器的代码。

import { Controller, Get, Post, Put, Delete, Body, Param, Render, UsePipes, Logger, UseGuards} from '@nestjs/common';
import { ProductoService } from './producto.service';
import { ProductoDTO } from './producto.dto';
import { ValidationPipe } from '../shared/validation.pipe';


@Controller('producto')
export class ProductoController {
    private logger = new Logger('ProductoController');

    constructor(private productoService: ProductoService){}

    @Get('index')
    //@UseGuards(new AuthGuard())
    @Render('Producto/index')
    showAllUsers(){
        return {product:this.productoService.showAll().then(function(result){
            var aux = [{}];
            aux = result;
            console.log(aux);
            return aux;

        })};        
    }
}

这是index.hbs车把模板的代码:

<h2>Lista de Productos</h2>
<div class="entry">
    <table class="table">
        <tr>
            <th>Nombre</th>
            <th>Cantidad</th>
            <th>Descripcion</th>
            <th></th>
        </tr>
        <tr>           
            {{#each aux}}
                <td>{{this.name}}</td>
                <td>{{this.quantity}}</td>
                <td>{{this.description}}</td>
            {{/each}} 
        </tr>
    </table>
    <br/>
</div>

即使在控制台日志中也向我显示数据。

image data log

1 个答案:

答案 0 :(得分:1)

我认为nestjs不会自动等待嵌套的Promise解决。因此它将返回{product: Promise}

我建议您使用方法async

@Get('index')
async showAllUsers(){
    const products = await this.productoService.showAll();
    return {products};        
}

此外,尽管返回aux,但在hbs模板中仍引用{product: [...]}。因此应该改为{{#each product}}。 (在上面的示例中,我将其重命名为products,因为它是一个数组。)