IT Log

Record various IT issues and difficulties.

Tag: node.js


  • Based on Python and Django for Tourist Attraction Recommendation System

    Author Bio: Years of experience in Java, front-end, and Python development, including work as a senior developer, project manager, and architect. Main Content: Java project development, Python project development, university data and AI projects, microcontroller design projects, technical interview preparation, sharing of latest technologies. Save & Like to stay engaged  Follow the author for benefits…


  • How to Implement the Frontend Part in Frontend-Backend Separation

    To implement the frontend part in a front-end and back-end separation structure, follow these organized steps: 1. Project Initialization Choose Frontend Framework: Select a framework like Vue.js for familiarity and efficiency. Select Backend Technology: Opt for Node.js with Express.js or another suitable backend language/framework. 2. Design Frontend-Backend Interaction Define API Endpoints: Establish clear endpoints for…


  • Front-end uses Markdown to upload files, the editor generates a timestamp, and how does the backend receive it

    To solve the problem of generating a timestamp when uploading files using Markdown in the frontend and receiving it in the backend, follow these steps: Frontend Implementation: Generate Timestamp: Use JavaScript’s Date.now() to create a unique timestamp. Modify Filename: Append the timestamp to the selected file’s name (e.g., filename_1630548000.jpg). Insert into Markdown: Update the Markdown…