|
@@ -1,10 +1,27 @@
|
|
|
package api
|
|
|
|
|
|
import (
|
|
|
+ "fmt"
|
|
|
+ "net/http"
|
|
|
+ "time"
|
|
|
+
|
|
|
"github.com/gin-gonic/gin"
|
|
|
)
|
|
|
|
|
|
func Printr(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
+ c.Header("Content-Type", "text/event-stream")
|
|
|
+ c.Header("Cache-Control", "no-cache")
|
|
|
+ c.Header("Connection", "keep-alive")
|
|
|
+ c.Header("Access-Control-Allow-Origin", "*")
|
|
|
+
|
|
|
+ for {
|
|
|
+ // c.Request.Write()
|
|
|
+ fmt.Fprintf(c.Writer, "data: %s\n\n", time.Now().Format(time.Stamp))
|
|
|
+ c.Writer.(http.Flusher).Flush()
|
|
|
+ time.Sleep(1 * time.Second)
|
|
|
+ fmt.Println(time.Now().Format(time.Stamp))
|
|
|
+ }
|
|
|
+
|
|
|
map1 := map[string]string{"a": "1234"}
|
|
|
println(map1["b"] == "")
|
|
|
println(map1["a"])
|