App下載

詞條

大約有 5,000 項(xiàng)符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,409 項(xiàng)。(搜索耗時:0.0150秒)

1731.Vant Checkbox 復(fù)選框

引入import Vue from 'vue'; import { Checkbox, CheckboxGroup } from 'vant'; Vue.use(Checkbox); Vue.use(CheckboxGroup); 代碼演示基礎(chǔ)用法通過v-model綁定復(fù)選框的勾選狀態(tài)<van-checkbox v-model="checked">復(fù)選框</van-checkbox> export default { data() { return { checked: ...

http://www.o2fo.com/vantlesson/vantlesson-uv4335v8.html

1732.常用指令簡介

...<!-- displayed if str holds the string "yes" --> <div *ngIf="myFunc()"></div> <!-- displayed if myFunc returns a true value --> ``` ### NgSwitch 有時候需要根據(jù)不同的條件,渲染不同的元素,此時我們可以使用多個 `ngIf` 來實(shí)現(xiàn)。 ```html <div c...

http://www.o2fo.com/angular/angular-s68x24or.html

1733.Apache Maven POM

...然后執(zhí)行目標(biāo)。能夠在 POM 中設(shè)置的一些配置如下: project dependencies plugins goals build profiles project version developers mailing list 在創(chuàng)建 POM 之前,我們首先確定工程組(groupId),及其名稱(artifactId)和版本,在倉庫中這些屬性是工程...

http://www.o2fo.com/maven/varq1ht4.html

1734.第 2 章 基本技巧

...前目錄所有文件做個快照,使用: $ git init $ git add . $ git commit -m "My first backup" 現(xiàn)在如果你的編輯亂了套,恢復(fù)之前的版本: $ git reset --hard 再次保存狀態(tài): $ git commit -a -m "Another backup" 添加、刪除、重命名 以上命令將只跟蹤你第...

http://www.o2fo.com/git_magic/z4pyqozt.html

1735.Redis 啟動并初始化 Sentinel

...個 Sentinel 可以使用命令: $ redis-sentinel /path/to/your/sentinel.conf 或者命令: $ redis-server /path/to/your/sentinel.conf --sentinel 這兩個命令的效果完全相同。 當(dāng)一個 Sentinel 啟動時, 它需要執(zhí)行以下步驟: 初始化服務(wù)器。 將普通 Redis 服務(wù)器...

http://www.o2fo.com/hdclil/bt4xzozt.html

1736.Maven創(chuàng)建項(xiàng)目

...一個Maven項(xiàng)目后,我們將添加一些Java源代碼。 Maven使用 archetype 和 maven-archetype-quickstart 插件插件來創(chuàng)建項(xiàng)目。 在 C:\\ mvn_test 文件夾中轉(zhuǎn)到并執(zhí)行以下mvn命令。 C:\mvn_test>mvn archetype:generate -DgroupId=com.java2s.ide -DartifactId=xmlFileEditor -...

http://www.o2fo.com/maven/maven-create-project.html

1737.Perl 目錄操作

...前位置 seekdir DIRHANDLE, POS # 定位指定到目錄的 POS 位置 closedir DIRHANDLE # 關(guān)閉目錄 顯示所有的文件 顯示目錄下的所有文件,以下實(shí)例使用了 glob 操作符,演示如下: #!/usr/bin/perl # 顯示 /tmp 目錄下的所有文件 $dir = "/tmp/*"; my @f...

http://www.o2fo.com/perl/perl-directories.html

1738.第八章:高效文件處理、正則表達(dá)式、文件名匹配

...一個由數(shù)字構(gòu)成的文本文件,并打印它們的和。 -- file: ch08/SumFile.hs main = do contents <- getContents print (sumFile contents) where sumFile = sum . map read . words 盡管讀寫文件時,默認(rèn)使用 String 類型,但它并不高效,所以這樣簡單的程序效率會...

http://www.o2fo.com/real_world_haskell/4auzxozt.html

1739.UNIX RSYNC

Rsync 差不多可以代替 cp 和 scp,此外,斷點(diǎn)續(xù)傳是重啟有效的。尾部的斜杠也有著不同的意思,請閱讀 man 頁面......這里有一些例子:拷貝目錄中所有內(nèi)容:# rsync -a /home/colin/ /backup/colin/ # rsync -a /var/ /var_bak/ #...

http://www.o2fo.com/xfgms6/41t79ozt.html

1740.Docker 容器與主機(jī)拷貝數(shù)據(jù)

在Docker實(shí)踐2中使用-v參數(shù)將主機(jī)與容器中相關(guān)目錄聯(lián)系在一起(掛載),所以我們可以用這個通道將想要互相拷貝的數(shù)據(jù)放入其中,這樣就可以用cp命令來復(fù)制文件了。除了這個辦法,我們還可以分別用不同...

http://www.o2fo.com/kxqhmy/hgkmrdn1.html

抱歉,暫時沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

1731.Vant Checkbox 復(fù)選框

引入import Vue from 'vue'; import { Checkbox, CheckboxGroup } from 'vant'; Vue.use(Checkbox); Vue.use(CheckboxGroup); 代碼演示基礎(chǔ)用法通過v-model綁定復(fù)選框的勾選狀態(tài)<van-checkbox v-model="checked">復(fù)選框</van-checkbox> export default { data() { return { checked: ...

http://www.o2fo.com/vantlesson/vantlesson-uv4335v8.html

1732.常用指令簡介

...<!-- displayed if str holds the string "yes" --> <div *ngIf="myFunc()"></div> <!-- displayed if myFunc returns a true value --> ``` ### NgSwitch 有時候需要根據(jù)不同的條件,渲染不同的元素,此時我們可以使用多個 `ngIf` 來實(shí)現(xiàn)。 ```html <div c...

http://www.o2fo.com/angular/angular-s68x24or.html

1733.Apache Maven POM

...然后執(zhí)行目標(biāo)。能夠在 POM 中設(shè)置的一些配置如下: project dependencies plugins goals build profiles project version developers mailing list 在創(chuàng)建 POM 之前,我們首先確定工程組(groupId),及其名稱(artifactId)和版本,在倉庫中這些屬性是工程...

http://www.o2fo.com/maven/varq1ht4.html

1734.第 2 章 基本技巧

...前目錄所有文件做個快照,使用: $ git init $ git add . $ git commit -m "My first backup" 現(xiàn)在如果你的編輯亂了套,恢復(fù)之前的版本: $ git reset --hard 再次保存狀態(tài): $ git commit -a -m "Another backup" 添加、刪除、重命名 以上命令將只跟蹤你第...

http://www.o2fo.com/git_magic/z4pyqozt.html

1735.Redis 啟動并初始化 Sentinel

...個 Sentinel 可以使用命令: $ redis-sentinel /path/to/your/sentinel.conf 或者命令: $ redis-server /path/to/your/sentinel.conf --sentinel 這兩個命令的效果完全相同。 當(dāng)一個 Sentinel 啟動時, 它需要執(zhí)行以下步驟: 初始化服務(wù)器。 將普通 Redis 服務(wù)器...

http://www.o2fo.com/hdclil/bt4xzozt.html

1736.Maven創(chuàng)建項(xiàng)目

...一個Maven項(xiàng)目后,我們將添加一些Java源代碼。 Maven使用 archetype 和 maven-archetype-quickstart 插件插件來創(chuàng)建項(xiàng)目。 在 C:\\ mvn_test 文件夾中轉(zhuǎn)到并執(zhí)行以下mvn命令。 C:\mvn_test>mvn archetype:generate -DgroupId=com.java2s.ide -DartifactId=xmlFileEditor -...

http://www.o2fo.com/maven/maven-create-project.html

1737.Perl 目錄操作

...前位置 seekdir DIRHANDLE, POS # 定位指定到目錄的 POS 位置 closedir DIRHANDLE # 關(guān)閉目錄 顯示所有的文件 顯示目錄下的所有文件,以下實(shí)例使用了 glob 操作符,演示如下: #!/usr/bin/perl # 顯示 /tmp 目錄下的所有文件 $dir = "/tmp/*"; my @f...

http://www.o2fo.com/perl/perl-directories.html

1738.第八章:高效文件處理、正則表達(dá)式、文件名匹配

...一個由數(shù)字構(gòu)成的文本文件,并打印它們的和。 -- file: ch08/SumFile.hs main = do contents <- getContents print (sumFile contents) where sumFile = sum . map read . words 盡管讀寫文件時,默認(rèn)使用 String 類型,但它并不高效,所以這樣簡單的程序效率會...

http://www.o2fo.com/real_world_haskell/4auzxozt.html

1739.UNIX RSYNC

Rsync 差不多可以代替 cp 和 scp,此外,斷點(diǎn)續(xù)傳是重啟有效的。尾部的斜杠也有著不同的意思,請閱讀 man 頁面......這里有一些例子:拷貝目錄中所有內(nèi)容:# rsync -a /home/colin/ /backup/colin/ # rsync -a /var/ /var_bak/ #...

http://www.o2fo.com/xfgms6/41t79ozt.html

1740.Docker 容器與主機(jī)拷貝數(shù)據(jù)

在Docker實(shí)踐2中使用-v參數(shù)將主機(jī)與容器中相關(guān)目錄聯(lián)系在一起(掛載),所以我們可以用這個通道將想要互相拷貝的數(shù)據(jù)放入其中,這樣就可以用cp命令來復(fù)制文件了。除了這個辦法,我們還可以分別用不同...

http://www.o2fo.com/kxqhmy/hgkmrdn1.html

抱歉,暫時沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程