第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

咕嚕咕嚕:更新文件服務(wù)器提供的文件

咕嚕咕嚕:更新文件服務(wù)器提供的文件

Go
回首憶惘然 2022-10-04 16:02:10
我正在使用文件服務(wù)器為目錄提供服務(wù),如下所示:go func() {  fs := http.FileServer(http.Dir("./view"))  err := http.ListenAndServe(":8000", fs)  if err != nil {    log.Fatal("ListenAndServe: ", err)  }}()在目錄中,我有一個(gè)文件,我正在嘗試在提供目錄時(shí)更新該文件。我觀察到追加命令僅在我停止提供目錄后阻止并更新文件。viewindex.htmlview以下是修改該文件的代碼:func AppendToFile() {  f, err := os.OpenFile("./view/index.html", os.O_RDWR, 0644)  if err != nil {    panic(err)  }  defer f.Close()  // This assumes that the file ends with </body></html>  f.Seek(-15, 2)  if _, err = f.WriteString("test test test\n"); err != nil {    panic(err)  }  if _, err = f.WriteString("</body></html>\n"); err != nil {    panic(err)  }}這是預(yù)期的行為嗎?謝謝!
查看完整描述

1 回答

?
慕姐8265434

TA貢獻(xiàn)1813條經(jīng)驗(yàn) 獲得超2個(gè)贊

網(wǎng)易娛樂(lè).文件服務(wù)器函數(shù)只返回一個(gè)處理程序。因此,它不會(huì)阻塞文件系統(tǒng)。此處的問(wèn)題可能與文件的偏移量有關(guān)。我已經(jīng)在我的機(jī)器中嘗試過(guò),它工作沒(méi)有任何問(wèn)題。


我已經(jīng)修改了你的代碼;


package main


import (

    "net/http"

    "os"

    "time"

)


func main() {

    t := time.NewTicker(time.Second)

    defer t.Stop()

    go func() {

        srv := http.FileServer(http.Dir("./test"))

        http.ListenAndServe(":8080", srv)

    }()


    for {

        select {

        case <-t.C:

            appendToFile()

        }

    }

}


func appendToFile() {

    f, err := os.OpenFile("./test/index.html", os.O_RDWR, 0644)

    if err != nil {

        panic(err)

    }

    defer f.Close()

    // This assumes that the file ends with </body></html>

    f.Seek(-16, 2)

    if _, err = f.WriteString("test test test\n"); err != nil {

        panic(err)

    }

    if _, err = f.WriteString("</body></html>\n"); err != nil {

        panic(err)

    }

}

在索引中.html我最初放置空白文檔,


<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<body>


</body></html>

PS:最好先檢查偏移量,然后將字符串寫(xiě)入該位置。


查看完整回答
反對(duì) 回復(fù) 2022-10-04
  • 1 回答
  • 0 關(guān)注
  • 106 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)