code在這
https://tinyurl.com/y68npkms
肥宅大叔最近在自學搞一個留言板
雖然功能測試起來目前看起來好像似乎大概沒問題
不過terminal會出現"POST /msg HTTP/1.1" 302
google說重新導向時會吐這訊息
這會有什麼問題嗎?
另外請教一下,圖片和縮圖存成檔案比較好還是塞進資料庫?
我現在做的是上傳後全塞進sqlite的資料庫
另問...
id=123, kind="test"
sql = f"select {kind} from table where id = {id}"
cur.execute(sql)
data=cur.fetchone()[0]
這樣傳回的data是我想要的
可是
sql = "select ? from table where id = ?"
cur.execute(sql,(kind,id))
data=cur.fetchone()[0]
為什麼這樣只傳回"test"?
目前用做半套的處理
sql = "select {} from table where id = ? ".format(kind)
cur.execute(sql,(id,))