openresty怎么接收POST來的JSON數據并存入MYSQL?
post的數據會提交一個字節流到對應的請求頁,請求頁通過讀取字節流來獲取post的數據!
示例C#中如何在后臺獲取post的數據:
System.IO.StreamReader sdr = new System.IO.StreamReader(Request.InputStream);data = sdr.ReadToEnd();post的數據會提交一個字節流到對應的請求頁,請求頁通過讀取字節流來獲取post的數據!
示例C#中如何在后臺獲取post的數據:
System.IO.StreamReader sdr = new System.IO.StreamReader(Request.InputStream);data = sdr.ReadToEnd();