我想知道是否有可能创建这样的字典:
{index:'value',index2:'value2'}
相反:
{'index':'value','index2':'value2'}
这可能吗?
至少有一种方法吗? 只是想知道,我已经看到了这个:
$.ajax{
...
data: {index:'value',index2:'value2'},
...
}
之前应创建索引吗? 索引是"常量"预先创建?
如果它不能在Python上,你能告诉我为什么吗?