2
我有這樣的代碼如何返回golang中的數組以便在我的index.html中使用它?
files, _ := ioutil.ReadDir("public/my-template/imagesT/gallery/")
for _, f:=range files {
fmt.Println(f.Name())
}
如何返回一個數組包含所有f.Name
到index.html中使用它們?
它的工作很好,謝謝sberry –
我想說的是,當我在此代碼controller.carService.InsertImages傳遞文件(文件名)和所述InsertImages函數func(R CarService)InsertImages(圖像* []串){ \t會話,_:= mgo.Dial(r.uri) \t延遲session.Close() \t session.SetSafe( &mgo.Safe {}) \t集合:= session.DB(r.dbName).C(r.collectionName) \t爲_,圖像:=範圍圖像{ \t \t錯誤:= collection.Insert( \t \t \t models.Car {的ImagePath:圖像}) \t \t如果誤差= {零 \t \t} \t} }我有錯誤說:不能超過的範圍內的圖像(類型* []字符串) –