最近有實做 Dictionary 轉 json 然後上傳到 Firebase Storage
例如有個 Dictionary
let student = [
"name": Jack,
"age" : 18,
"identity" : "N/A"
]
https://i.imgur.com/MmFNBQu.png
N/A 是沒有資料, 後台指定要的字串
就只是簡單轉成 json, >> student.jsonData()
型態轉成 Data 之後要上傳到 Firebase Storage
結果傳上去 Firebase 之後打開 json file, N/A 會有逃脫字元
https://i.imgur.com/BNtpbbe.png
https://i.imgur.com/8JHf7TZ.png
有逃脫字元應該是正常現象, 不過要怎麼不要讓它出現?
還請前輩幫忙解惑