Skip to content
Advertisement

React.js: Raw HTML string does not gets recognized as HTML elements from Node.js

I am sending a raw HTML from node.js to react. and It was successful. However, when I try to render it, they are render as raw string as opposed to HTML elements

This is how I get the string from front-end:

 componentDidMount() {
    this.callApi()
      .then(res => this.setState({ data: res.express}))
      .catch(err => console.log(err));
  }

  callApi = async () => {
      const response = await fetch('/myCart');
      const body = await response.json();
      if (response.status !== 200) throw Error(body.message);

      return body;
  };

The render method from my react(Simplified) looks like this:

    render()  {
        return (
          <div>
            <div className="App">
              <header className="App-header">
                <img src={logo} className="App-logo" alt="logo" />
                <h1 className="App-title">Welcome to Shopping Center</h1>
              </header>
            </div>
            <div className="row">
              {this.state.data}
            </div>
        </div>
        <button type="button" className="btn btn-primary Bottom-right " onClick={(e) => this.handleSubmit(e)}>
              My Cart
        </button>
      </div>
    );
  }
}

In my server.js, i have the following code handeling the post request:

const express = require('express');
const app = express();
var bodyParser = require('body-parser');
app.use(bodyParser.json());

//DB connections
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/";



app.get('/myCart', (req, res) => {
  var data;
  var htmlString ="";
  var total = 0;

  MongoClient.connect(url, { useNewUrlParser: true }, function(err, db) {
    if (err) throw err;
    var dbo = db.db("cart");
    dbo.collection("items").find().toArray(function(err, result) {
      if (err) throw err;
      console.log("here")
      data = result
      for(let item of data){
        //console.log("desc: " + item.desc)
        //console.log("price: " + item.price)
        htmlString += "<div>" + item.desc + "</div>" + "<div>" + item.price + "</div>"
        total += item.price
      }
      console.log("total is" + total)
      htmlString +="<div>" + total + "</div>"
      console.log(htmlString)
      res.send({express: htmlString})
      db.close();
    });
  });
}); 

Why doesn’t react render the string as an HTML elements, but rather a raw string?

Advertisement

Answer

You may be able to leverage dangerouslySetInnerHtml, like so:

render()  {
  return (
    <div>
      <div>
        <div className="App">
          <header className="App-header">
            <img src={logo} className="App-logo" alt="logo" />
            <h1 className="App-title">Welcome to Shopping Center</h1>
          </header>
        </div>

        <div 
          className="row"
          dangerouslySetInnerHTML={{__html: this.state.data}}
        />

      </div>
      <button 
        type="button"
        className="btn btn-primary Bottom-right " 
        onClick={(e) => this.handleSubmit(e)}
      >
        My Cart
      </button>
    </div>
  );
}
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement