資料儲存(三 將JSON字串轉換為XML字串)

2021-10-13 10:10:18 字數 484 閱讀 1850

將json字串轉換為xml字串需要做一下中轉,先轉換為字典,再使用

dicttoxml模組中的dicttoxml函式轉換為xml字串。

import json

import dicttoxml

f =open

('files/products.json'

,'r'

,encoding=

'utf-8'

)jsonstr = f.read(

)#將json字串轉換成字典

d = json.loads(jsonstr)

print

(d)#將字典轉換成xml字串

xmlstr = dicttoxml.dicttoxml(d)

.decode(

'utf-8'

)print

(xmlstr)

f.close(

)

將json字串轉換成json物件

在獲取資料庫資料時,在物件資料中還有乙個物件資料,但是在前端this.axios.get的時候獲得的是string資料型別需要將string轉成object 使用json.parse const obj json parse objnew 出現錯誤提示 unexpected token in jso...

vue 將 路由轉換為 json 字串

需要注意的是,foreach和map中使用 async await 是無效的,弄了乙個晚上,結果還是用普通的 for 來實現同步 將 asyncrouters 的 roles 初始化為空,同時處理 component 的懶載入 component import views home home 轉換為...

json與字串轉換

一 將json字串轉換成js物件 建立json字串 var str 將此字串轉換成物件 1.使用eval函式左轉換 var obj eval json 2.使用json物件提供的函式做轉換 json是瀏覽器提供的物件 var obj json.parse str 3.引入外部api來做轉換 該檔案由...