GitHub
(原名PDQuickUI,從0.6.0版本開始更名為QuickUI)
QuickUI是一個源自PDRenderKit的前端渲染框架,專注於增強前端框架功能。
透過整合虛擬DOM,重寫渲染邏輯,提高渲染效率,實現更快的資料觀察和自動更新。
該專案從 PDRenderKit 中刪除了原型擴展,以確保相容性和效能,使其適合複雜的應用程式。
它提供模組和非模組版本,並將 PDRenderKit 中的授權從 GPL-3.0 更改為 MIT。
特徵
- 清晰的架構:將UI與資料邏輯分離,使其更易於維護。
- 程式碼簡潔:減少冗餘程式碼,增強可讀性。
- 自動渲染:自動監控資料變化與更新,盡量減少手動操作。
- 輕量級:在小於 20kb 的檔案大小內保持完整功能。
安裝
-
從 npm 安裝
npm i @pardnchiu/quickui
-
包含來自 CDN
-
直接包含QuickUI
<!-- Version 0.6.0 and above --> <script src="https://cdn.jsdelivr.net/npm/@pardnchiu/quickui@%5BVERSION%5D/dist/QuickUI.js"></script> <!-- Version 0.5.4 and below --> <script src="https://cdn.jsdelivr.net/npm/pdquickui@%5BVERSION%5D/dist/PDQuickUI.js"></script>
-
模組版本
// Version 0.6.0 and above import { QUI } from "https://cdn.jsdelivr.net/npm/@pardnchiu/quickui@[VERSION]/dist/QuickUI.esm.js"; // Version 0.5.4 and below import { QUI } from "https://cdn.jsdelivr.net/npm/pdquickui@[VERSION]/dist/PDQuickUI.module.js";
-
用法
-
初始化 QUI
const app = new QUI({ id: "", // Specify rendering element data: { // Custom DATA }, event: { // Custom EVENT }, when: { before_render: function () { // Stop rendering }, rendered: function () { // Rendered }, before_update: function () { // Stop updating }, updated: function () { // Updated }, before_destroy: function () { // Stop destruction }, destroyed: function () { // Destroyed } } });
概述
自動渲染:偵測到資料變更時自動重新載入。
屬性概述
Attribute | Description |
---|---|
{{value}} | Inserts text into HTML tags and automatically updates with data changes. |
:path | Used with the temp tag to load HTML fragments from external files into the current page. |
:html | Replaces the element's innerHTML with text. |
:for | Supports formats like item in items, (item, index) in items, (key, value) in object. Iterates over data collections to generate corresponding HTML elements. |
:if :else-if :elif :else |
Displays or hides elements based on specified conditions, enabling branching logic. |
:model | Binds data to form elements (e.g., input), updating data automatically when input changes. |
:hide | Hides elements based on specific conditions. |
:animation | Specifies transition effects for elements, such as fade-in or expand, to enhance user experience. |
:mask | Controls block loading animations, supporting `true |
:[attr] | Sets element attributes, such as ID, class, image source, etc. Examples: :id/:class/:src/:alt/:href... |
:[css] | Sets element CSS, such as margin, padding, etc. Examples: :background-color, :opacity, :margin, :top, :position... |
@[event] | Adds event listeners that trigger specified actions upon activation. Examples: @click/@input/@mousedown... |
文字替換
{{價值}}
-
index.html
npm i @pardnchiu/quickui
-
結果
<!-- Version 0.6.0 and above --> <script src="https://cdn.jsdelivr.net/npm/@pardnchiu/quickui@%5BVERSION%5D/dist/QuickUI.js"></script> <!-- Version 0.5.4 and below --> <script src="https://cdn.jsdelivr.net/npm/pdquickui@%5BVERSION%5D/dist/PDQuickUI.js"></script>
:html
-
index.html
// Version 0.6.0 and above import { QUI } from "https://cdn.jsdelivr.net/npm/@pardnchiu/quickui@[VERSION]/dist/QuickUI.esm.js"; // Version 0.5.4 and below import { QUI } from "https://cdn.jsdelivr.net/npm/pdquickui@[VERSION]/dist/PDQuickUI.module.js";
-
結果
const app = new QUI({ id: "", // Specify rendering element data: { // Custom DATA }, event: { // Custom EVENT }, when: { before_render: function () { // Stop rendering }, rendered: function () { // Rendered }, before_update: function () { // Stop updating }, updated: function () { // Updated }, before_destroy: function () { // Stop destruction }, destroyed: function () { // Destroyed } } });
插入區塊
> [!注意]
>確保在測試時停用瀏覽器中的本機檔案限製或使用即時伺服器。
:小路
-
test.html
<h1 id="title">{{ title }}</h1> const app = new QUI({ id: "app", data: { title: "test" } });
-
index.html
<h1 id="test">test</h1>
-
結果
const app = new QUI({ id: "app", data: { html: "<b>innerHtml</b>" } });
循環渲染
:為了
-
index.html
<b>innerHtml</b>
-
結果
<h1 id="path-heading">path heading</h1> <p>path content</p>
-
結果
const app = new QUI({ id: "app" });
條件渲染
-
index.html
<h1 id="path-heading">path heading</h1> <p>path content</p>
-
結果:標題 = 1
- {{ item }} {{ CALC(index + 1) }}
-
結果:heading = null && isH2 = true
Nest loop
-
index.html
-
{{ key }}: {{ val.name }}
-
{{ item.name }}
- {{ CALC(index1 + 1) }}. {{ item1.name }} - ${{ item1.price }}
-
{{ item.name }}
-
{{ key }}: {{ val.name }}
-
結果:標題 = 3 && isH2 = null
- food: Food
- Snacks
- 1. Potato Chips -
- 2. Chocolate -
- Beverages
- 1. Juice -
- 2. Tea -
- Snacks
- home: Home
- Furniture
- 1. Sofa - 0
- 2. Table - 0
- Decorations
- 1. Picture Frame -
- 2. Vase -
- Furniture
- food: Food
-
結果:heading = null && isH2 = null
<h1 id="title-heading">{{ title }} {{ heading }}</h1> <h2 id="title-heading">{{ title }} {{ heading }}</h2> <h3 id="title-heading">{{ title }} {{ heading }}</h3> <h4 id="title-heading">{{ title }} {{ heading }}</h4> const app = new QUI({ id: "app", data: { heading: [Number|null], isH2: [Boolean|null], title: "test" } });
模板渲染
-
index.html
<h1 id="test">test 1</h1>
-
結果
<h2 id="test">test </h2>
綁定
<h3 id="test">test 3</h3>
活動
<h4 id="test">test </h4>
CSS
> [!注意]
>支援使用:[CSS屬性]進行簡單設置,直接將資料綁定到樣式屬性。
-
index.html
const test = new QUI({ id: "app", data: { hint: "hint 123", title: "test 123" }, render: () => { return ` "{{ hint }}", h1 { style: "background: red;", children: [ "{{ title }}" ] }` } })
-
結果:
hint 123 <h1 id="test">test 123</h1>
功能
長度()
-
index.html
test const app = new QUI({ id: "app", data: { password: null, }, event: { show: function(e){ alert("Password:", app.data.password); } } });
-
結果
test const app = new QUI({ id: "app", event: { test: function(e){ alert(e.target.innerText + " clicked"); } } });
計算()
-
index.html
test const app = new QUI({ id: "app", data: { width: "100px", color: "red" } });
-
結果
test
上() / 下()
-
index.html
<p>Total: {{ LENGTH(array) }}</p> const app = new QUI({ id: "app", data: { array: [1, 2, 3, 4] } });
-
結果
<p>Total: 4</p>
日期(數字,格式)
-
index.html
<p>calc: {{ CALC(num * 10) }}</p> const app = new QUI({ id: "app", data: { num: 1 } });
-
結果
<p>calc: 10</p>
延遲載入
:延遲載入
-
index.html
<p>{{ UPPER(test1) }} {{ LOWER(test2) }}</p> const app = new QUI({ id: "app", data: { test1: "upper", test2: "LOWER" } });
-
結果
<p>UPPER lower</p>
SVG 替換
-
測試.svg
<p>{{ DATE(now, YYYY-MM-DD hh:mm:ss) }}</p> const app = new QUI({ id: "app", data: { now: Math.floor(Date.now() / 1000) } });
-
index.html
<p>2024-08-17 03:40:47</p>
-
結果
<img src="/static/imghwm/default1.png" data-src="test.jpg" class="lazy" alt="QuickUI:輕量級前端框架" > const app = new QUI({ id: "app", data: { image: "test.jpg" }, option: { lazyload: true // Enable image lazy loading: true|false (default: true) } });
i18n
> [!注意]
>如果format是對象,則直接配置多語言內容。
>如果格式是字串,則透過 fetch 動態載入語言檔案。
-
en.json
<img src="/static/imghwm/default1.png" data-src="test.jpg" class="lazy" alt="QuickUI:輕量級前端框架" >
-
index.html
-
結果 i18nLang = zh
const app = new QUI({ id: "app", data: { svg: "test.svg", }, option: { svg: true // Enable SVG file transformation: true|false (default: true) } });
-
結果 i18nLang = en
生命週期掛鉤
{ "greeting": "Hello", "username": "Username" }
資料擷取
npm i @pardnchiu/quickui
創作者
邱敬幃 Pardn Chiu
執照
此項目已取得專有許可證許可。
您只能根據最終使用者授權協議 (EULA) 中指定的條款使用、安裝和執行此軟體。
©️ 2024 邱敬幃 Pardn Chiu
以上是QuickUI:輕量級前端框架的詳細內容。更多資訊請關注PHP中文網其他相關文章!

JavaScript字符串替換方法詳解及常見問題解答 本文將探討兩種在JavaScript中替換字符串字符的方法:在JavaScript代碼內部替換和在網頁HTML內部替換。 在JavaScript代碼內部替換字符串 最直接的方法是使用replace()方法: str = str.replace("find","replace"); 該方法僅替換第一個匹配項。要替換所有匹配項,需使用正則表達式並添加全局標誌g: str = str.replace(/fi

利用輕鬆的網頁佈局:8 ESTISSEL插件jQuery大大簡化了網頁佈局。 本文重點介紹了簡化該過程的八個功能強大的JQuery插件,對於手動網站創建特別有用

因此,在這裡,您準備好了解所有稱為Ajax的東西。但是,到底是什麼? AJAX一詞是指用於創建動態,交互式Web內容的一系列寬鬆的技術。 Ajax一詞,最初由Jesse J創造

10款趣味橫生的jQuery遊戲插件,讓您的網站更具吸引力,提升用戶粘性!雖然Flash仍然是開發休閒網頁遊戲的最佳軟件,但jQuery也能創造出令人驚喜的效果,雖然無法與純動作Flash遊戲媲美,但在某些情況下,您也能在瀏覽器中獲得意想不到的樂趣。 jQuery井字棋遊戲 遊戲編程的“Hello world”,現在有了jQuery版本。 源碼 jQuery瘋狂填詞遊戲 這是一個填空遊戲,由於不知道單詞的上下文,可能會產生一些古怪的結果。 源碼 jQuery掃雷遊戲

本教程演示了創建通過Ajax加載的動態頁面框,從而可以即時刷新,而無需全頁重新加載。 它利用jQuery和JavaScript。將其視為自定義的Facebook式內容框加載程序。 關鍵概念:Ajax和JQuery

本教程演示瞭如何使用jQuery創建迷人的視差背景效果。 我們將構建一個帶有分層圖像的標題橫幅,從而創造出令人驚嘆的視覺深度。 更新的插件可與JQuery 1.6.4及更高版本一起使用。 下載

此JavaScript庫利用窗口。名稱屬性可以管理會話數據,而無需依賴cookie。 它為瀏覽器中存儲和檢索會話變量提供了強大的解決方案。 庫提供了三種核心方法:會話


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

SublimeText3漢化版
中文版,非常好用

WebStorm Mac版
好用的JavaScript開發工具

禪工作室 13.0.1
強大的PHP整合開發環境

SublimeText3 Linux新版
SublimeText3 Linux最新版

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。