Library Search
结果页

入门篇 - CRUD 新闻应用

在 元器件 / 技术栈 / 知识库 中找到 16 个匹配结果。

返回文档库
技术栈

技术栈

8 个
查看全部
C# ```html <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>Alpine.js Demo</title> <style> body { font-family: system-ui; max-width: 600px; margin: 50px auto; background: #… 2% CodeIgniter ## CodeIgniter 4 入门教程:CRUD 新闻应用 ### 1. 背景 CodeIgniter 以轻量和速度著称。本教程带你构建完整的新闻 CRUD 应用,掌握 CI4 的 MVC 模式、模型、查询构建器和表单。 ### 2. 前置概念 | 概念 | 说明 | |------|------| | **Model** | CodeIgniter\Model,内置 CRUD 方法… 2% FastAPI @app.get("/") async def get_chat_page(): """返回简易聊天页面 HTML""" return """ <!DOCTYPE html> <html> <head><title>FastAPI Chat</title></head> <body> <h2>💬 实时聊天</h2>… 2% Spring Boot Spring Boot 配置加载优先级(从高到低): 1. 命令行参数 2. 操作系统环境变量 3. application-{profile}.properties(外部) 4. application.properties(外部) 5. application-{profile}.properties(classpath) 6. application.properties(classpath… 2% Fiber # Fiber 快速入门 — 用户管理 API ## 目标 使用 Fiber 的 Express 风格 API 快速搭建用户 CRUD,演示路由、中间件、参数解析。 ## 完整代码 ```go package main import ( "log" "strconv" "time" "github.com/gofiber/fiber/v3" ) type User struct… 1% Go (Golang) 参考文献: [ { "type": "book", "year": 2015, "title": "The Go Programming Language", "authors": [ "Alan A. A. Donovan", "Brian W. Kernighan" ] }, { "type": "book",… 1% Firebase Firestore ```javascript // npm install firebase-admin const { initializeApp, cert } = require('firebase-admin/app'); const { getFirestore, Timestamp, FieldValue } = require('firebase-admin/firestore'); initial… 1% CakePHP 参考文献: [ { "url": "https://book.cakephp.org", "type": "web", "year": 2024, "title": "CakePHP Cookbook", "authors": [ "CakePHP Team" ] }, { "url": "https://github… 1%
知识库

知识库

8 个
入门篇 - CRUD 新闻应用 ## CodeIgniter 4 入门教程:CRUD 新闻应用 ### 1. 背景 CodeIgniter 以轻量和速度著称。本教程带你构建完整的新闻 CRUD 应用,掌握 CI4 的 MVC 模式、模型、查询构建器和表单。 ### 2. 前置概念 | 概念 | 说明 | |------|------| | **Model** | CodeIgniter\Model,内置 CRUD 方法… 3% Express RESTful API — 图书管理 CRUD # Express RESTful API — 图书管理 CRUD ## 目标 15 分钟搭建完整的 RESTful API,包含 GET/POST/PUT/DELETE 操作,数据存内存(毕设可替换为数据库)。 ## 完整代码 ```javascript // app.js const express = require('express'); const app = express();… 3% Code First CRUD——学生数据库 # Entity Framework Core 入门——学生数据库 CRUD ## 目标 使用 EF Core + SQLite 构建一个学生管理系统,演示 Code First、迁移、CRUD 全流程。 ## 完整代码 ### 1. 数据模型 Models/Student.cs ```csharp namespace StudentDb.Models; public class Stud… 2% 入门篇 - Gii CRUD 实战 **a) 生成 Model** - 点击 "Model Generator" - Table Name: `product` - Model Class: `Product` - 点击 Generate **b) 生成 CRUD** - 点击 "CRUD Generator" - Model Class: `app\models\Product` - Controller Class: `app… 2% 02-进阶实战-WebSocket-后台任务-部署 @app.get("/") async def get_chat_page(): """返回简易聊天页面 HTML""" return """ <!DOCTYPE html> <html> <head><title>FastAPI Chat</title></head> <body> <h2>💬 实时聊天</h2>… 2% 用户 CRUD——BaseMapper 与条件构造器 # MyBatis-Plus 例程:用户增删改查 ## 目标 展示 MyBatis-Plus 核心:Entity 定义、BaseMapper CRUD、LambdaQueryWrapper 条件查询、分页、逻辑删除。 ## 完整代码 ```java // ── User.java (Entity) ── package com.example.demo.entity; import com… 2% 入门到进阶教程 Spring Boot 配置加载优先级(从高到低): 1. 命令行参数 2. 操作系统环境变量 3. application-{profile}.properties(外部) 4. application.properties(外部) 5. application-{profile}.properties(classpath) 6. application.properties(classpath… 2% CRUD 与动态查询 # Spring Data JPA CRUD 与动态查询示例 ## 目标 演示 Spring Data JPA 的基本 CRUD、命名查询、@Query 自定义查询、Specification 动态查询。 ## 完整代码 ### 1. 实体定义 ```java package com.example.entity; import jakarta.persistence.*; import… 2%