这甚至可能吗?
<h3 id="question">Some text</h3>
...
var theQuestion = document.querySelector('#question').innerText;
...
self.newData.theQuestion = [];
保存:theKey : {"theQuestion":[]}
尝试实现:theKey : {"Some Text":[]}
编辑:见截图
答案 0 :(得分:1)
发现它..没想到会这么容易:
import networkx as nx
import matplotlib.pyplot as plt
G1 = nx.balanced_tree(2,1)
G2 = nx.balanced_tree(2,2)
elarge1 =[(u,v) for (u,v,d) in G1.edges(data=True)]
elarge2 =[(u,v) for (u,v,d) in G2.edges(data=True)]
pos1=nx.spring_layout(G1)
pos2=nx.spring_layout(G2)
for k,v in pos2.items():
# Shift the x values of every node by 10 to the right
v[0] = v[0] +10
nx.draw_networkx_nodes(G1,pos1,node_size=30,node_color='b')
nx.draw_networkx_edges(G1,pos1,edgelist=elarge1,width=1,style='solid')
nx.draw_networkx_nodes(G2,pos2,node_size=50)
nx.draw_networkx_edges(G2,pos2,edgelist=elarge2,width=1)
plt.show() # display
plt.draw()
如果您希望主持人,可以关闭此问题。