下面是运行代码时的代码,得到AttributeError:'NoneType'对象没有属性'format'。
$('.filters').on('ifClicked', function(event)
{
var temp_id = event.target.id;
current_cb_element = temp_id;
var chckValue = $('#' + current_cb_element).parent('[class*="icheckbox"]').hasClass("checked");
if (chckValue)
chckValue = 0;
else
chckValue = 1;
$("input[name=filters]").each( function () {
alert( chckValue );
});
答案 0 :(得分:1)
更改此
print('Loaded data file {0} with {1} rows').format(filename, len(dataset))
对此
print('Loaded data file {0} with {1} rows'.format(filename, len(dataset)))
由于尝试将.format
应用于print
函数而得到错误,而这是需要应用于字符串的方法。