руль не может показывать изображения - PullRequest
0 голосов
/ 27 января 2020

Это мой index.hbs файл для отображения p

    {{# each items }}
      <tr>
        <td>{{ this._id }}</td>
        <td>{{ this.productName }}</td>
        <td>{{ this.price }}</td>
        <td>{{ this.stock }}</td>
        <td>{{ this.supplier }}</td>
        <td>{{ this.brand }}</td>
        <td><img src="uploads/{{ this.image }}" width="20px" height="20px"></td> 
      </tr>
      {{/each}}

И это мой index. js файл для загрузки данных в mongoDB и отображение изображения

    router.post('/insert', upload.single('image'), function (req, res, next) {
       var item = {
          productName: req.body.productName,
          price: req.body.price,
          stock: req.body.stock,
          supplier: req.body.supplier,
          brand: req.body.brand,
          image: req.body.filename
       };
       mongo.connect(url, function(err, db) {
          assert.equal(null, err);
          console.log('DB connected');
          db.collection('user-data').insertOne(item, function (err) {
             assert.equal(null, err);
             console.log('Item inserted!');
             db.close();
       });
    });
    res.redirect('/index/get-data');
  });

Я не могу отобразить изображения и не знаю, как исправить эту ошибку.

...