我试图使用(this).getName();
,而不是'e3000',我必须使用''(this).getName();
而不是'e3000',就像它知道的那样。
如何将(this).getName();
与''代替'e3000'?
data: JSON.stringify([{ 'e3000': {'name': (this).getName(), 'x': (this).getPosition().x, 'y': (this).getPosition().y, 'plan': '1'}}])
答案 0 :(得分:0)
data: JSON.stringify([{'"' + (this).getName() + '"': {'name': (this).getName(), 'x': (this).getPosition().x, 'y': (this).getPosition().y, 'plan': '1'}}])