我有一個字典數組,它將動態生成HTML表單。從字典中獲取密鑰當值是另一個字典
form_elements = [
{
'input_type': 'radio',
'options':
{
'bad': 'Bad',
'good': 'Good'
},
'caption': 'How are you feeling?'
},
{
'input_type': 'input_text',
'caption': 'What is your name?'
}]
當我遍歷列表,並試圖讓我的單選按鈕的選項,我得到一個關鍵的錯誤,可能是因爲該值是另一個字典。
for elm in form_elements:
print elm['options']
奇怪的是,這個返回true:
'options' in elm.keys()
我如何才能訪問到嵌套詞典?
謝謝,這是我落得這樣做,下面的其他人的建議後,所以我獎勵分給他,但您的建議表示感謝。 –