You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
59 for item in jsonRet['body']:
60 if item['t'] != 'word':
61 continue
#增加_enter key存在与否的验证
62 if first == 0 or (item['ps'] and item['ps'].has_key('_enter') and item['ps']['_enter'] == 1):
63 first = 1
64 pg = document.add_paragraph()
65 if item['ps'] and item['ps'].has_key('_enter') and item['ps']['_enter'] == 1:
66 continue
67 run = pg.add_run(item['c'])
68 # 添加格式;分析不出来,就统一宋体、五号
The text was updated successfully, but these errors were encountered:
59 for item in jsonRet['body']:
60 if item['t'] != 'word':
61 continue
#增加_enter key存在与否的验证
62 if first == 0 or (item['ps'] and item['ps'].has_key('_enter') and item['ps']['_enter'] == 1):
63 first = 1
64 pg = document.add_paragraph()
65 if item['ps'] and item['ps'].has_key('_enter') and item['ps']['_enter'] == 1:
66 continue
67 run = pg.add_run(item['c'])
68 # 添加格式;分析不出来,就统一宋体、五号
The text was updated successfully, but these errors were encountered: