从企业家的代码中尝试Django时,我遇到了类21的问题。他要求在类的开头键入produc.objects.get(id = 1)以获取类的对象。 ,但我的Shell中出现错误,我无法确定它是什么。我复制了错误。
$(".hide").click(function() {
$(this).siblings("p").hide(100);
$(this).siblings("z").show(100);
});
$(".show").click(function() {
$(this).siblings("p").show(100);
$(this).siblings("z").hide(100);
});