Library Search
结果页入门篇 - CRUD 新闻应用
在 技术栈 中找到 8 个匹配结果。
技术栈
技术栈
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… 2% Go (Golang) 参考文献:
[
{
"type": "book",
"year": 2015,
"title": "The Go Programming Language",
"authors": [
"Alan A. A. Donovan",
"Brian W. Kernighan"
]
},
{
"type": "book",… 2% Firebase Firestore ```javascript
// npm install firebase-admin
const { initializeApp, cert } = require('firebase-admin/app');
const { getFirestore, Timestamp, FieldValue } = require('firebase-admin/firestore');
initial… 2% CakePHP 参考文献:
[
{
"url": "https://book.cakephp.org",
"type": "web",
"year": 2024,
"title": "CakePHP Cookbook",
"authors": [
"CakePHP Team"
]
},
{
"url": "https://github… 1%