我想使用string
属性
>>> colObj = College.objects.get(id=1)
>>> name = "collegeName"
现在我想使用对象属性作为string
的大学名称。
例外输出:
>>> colName = colObj.name
>>> colname
>>> 'abc'
答案 0 :(得分:2)
使用getattr()
功能:
$('#table1 tr:nth-last-child(2)').find('select').append("<option>rose</option>");