Company logo
  • Jobs
  • Bootcamp
  • About Us
  • For professionals
    • Home
    • Jobs
    • Courses and challenges
    • Questions
    • Teachers
    • Bootcamp
  • For business
    • Home
    • Our process
    • Plans
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Calculator

0

59
Views
Replacing the JSON from API with HTML in the Vue.js app

I have a simple Vite+Vue.js project in which I am importing data from headless-cms Wordpress using REST API and JSON. It should take and display titles and content of the posts (including imgs when they occure). I'm stuck because all the data on the page display like HTML, i.e. it contains HTML elements, but of course are JSON. Is there any way to convert it to plain HTML? I've tried filtering it with "replacer" method, but for all elements and situations it would take ages.

Screenshot of how data display on page

My component template:

<template>
<h1>Posts</h1>
<div v-for="post in posts" :key="post.id" class="posts">
    <h2> {{ post.title.rendered }} </h2>
    <div> {{ post.content.rendered }} </div>
</div>

My script in that component:

<script>
export default {
    data() {
        return {
            posts: [],
            message: String,
        }
    },
    mounted() {
        fetch('https://my-url-here.com/wp-json/wp/v2/posts')
        .then(res => res.json())
        .then(data => this.posts = data)
        .then(err => console.log(err)) 
    }
}

</script>
7 months ago · Juan Pablo Isaza
1 answers
Answer question

0

Just use v-html

<template>
<h1>Posts</h1>
<div v-for="post in posts" :key="post.id" class="posts">
    <h2> {{ post.title.rendered }} </h2>
    <div v-html="post.content.rendered"></div>
</div>
7 months ago · Juan Pablo Isaza Report
Answer question
Find remote jobs