繁体   English   中英

如何从数组创建多个HTML元素?

[英]How to create multiple HTML elements from an Array?

我有一个简单的网站,可以从Google Books API获取图书清单。 我有一个名为scripts.js的单独文件,它可以获取所有书籍信息(标题,作者,ISBN,图像链接)。

我想在一个画廊风格的页面中为每本书创建一个div,其中有一本书的图片,书的顶部是标题,作者和ISBN。

我已经尝试在Javascript中创建DIV,但我希望每个DIV中都有h3,p和img,我似乎无法理解如何在Javascript中实现这一点。

我的画廊HTML代码:

<div id="content">
            <h2>My Bookshelf</h2>
            <div class="book">
                <!-- The book image is the background of the div -->
                <h3 class="book-title">Title</h3>
                <p class="book-isbn">ISBN: 000000</p>
                <p class="book-author">Authors: ABC</p>
            </div>
        </div>

我的Javascript代码循环遍历JSON文件并返回所需的信息。

// Returns an array with the book title, ISBN, author, bookmark icon, description, image 
    apiRequest.onreadystatechange = () => {
        if (apiRequest.readyState === 4) {
            const response = JSON.parse(apiRequest.response);
            var bookList = response.items;
            // Removes old search results before display new ones
            bookSection.innerHTML = "";
            for (let i = 0; i < bookList.length; i++) {
                console.log(i);
                var title = (bookList[i]["volumeInfo"]["title"]);
                try {
                    var isbn = (bookList[i]["volumeInfo"]["industryIdentifiers"][0]["identifier"]);
                } catch (TypeError) {
                    var isbn = "ISBN Not Available";
                }
                var author = (bookList[i]["volumeInfo"]["authors"]);
                var description = (bookList[i]["description"]);
                try {
                    var image = (bookList[i]["volumeInfo"]["imageLinks"]["thumbnail"]);
                } catch (TypeError) {
                    var image = "img/unavailable.png";
                }
            }
        }
    }

您可以使用模板文字来简化工作。

你可以这样做:

var bookSection = `<div id="content">
        <h2>My Bookshelf</h2>
        <div class="book">
            <!-- The book image is the background of the div -->
            <h3 class="book-title">${titleVar}</h3>
            <p class="book-isbn">ISBN: ${ISBNVar}</p>
            <p class="book-author">Authors: ${AuthorsVar}</p>
        </div>
    </div>`;

从这里了解有关模板文字的更多信息: https//developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals

你的代码应该是这样的

apiRequest.onreadystatechange = () => {
    if (apiRequest.readyState === 4) {
        const response = JSON.parse(apiRequest.response);
        var bookList = response.items;
        // Removes old search results before display new ones
        bookSection.innerHTML = "";
        let bookListHtmlMarkup = '';
        for (let i = 0; i < bookList.length; i++) {
            console.log(i);
            // Declaring book object
            const book = {};
            const bookListHtmlMarkup = '';
            book['title'] = (bookList[i]["volumeInfo"]["title"]);
            try {
                book['isbn'] = (bookList[i]["volumeInfo"]["industryIdentifiers"][0]["identifier"]);
            } catch (TypeError) {
                book['isbn'] = "ISBN Not Available";
            }
            book['author'] = (bookList[i]["volumeInfo"]["authors"]);
            book['description'] = (bookList[i]["description"]);
            try {
                book['image'] = (bookList[i]["volumeInfo"]["imageLinks"]["thumbnail"]);
            } catch (TypeError) {
                book['image'] = "img/unavailable.png";
            }

            bookListHtmlMarkup += `
                <div class="book">
                    <div class="book-image">
                        <img src="${book.image}" alt="Image unavailable" />
                    </div>
                    <div class="book-info">
                        <h3 class="book-title">${book.title}</h3>
                        <p class="book-isbn">ISBN: ${book.isbn}</p>
                        <p class="book-author">Author: ${book.author}</p>
                        <p class="book-description">Author: ${book.description}</p>
                    </div>
                </div>
            `;
        }
        // Assigning generated markup to innerHTML of bookSection
        bookSection.innerHTML = bookListHtmlMarkup;
    }

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM