Django为什么分页不起作用?

时间:2019-05-26 10:10:26

标签: django pagination

很抱歉,因为这个问题很愚蠢。我正在阅读本书中的一个名为build django 2 web application的教程。我进入了分页主题,但是即使我仔细复制粘贴,我也无法理解为什么它不起作用。

class ExceptionInConstructor
{
 unique_ptr<int> a;
public:
    ExceptionInConstructor()
    {
        a = std::unique_ptr<int>( new int(10));
        cout <<"Constructor called. Value of a is "<< *a<<endl;
        //some exception occurs after the mrmory allocation
        throw exception();
    }
    ~ExceptionInConstructor()
    {
        cout << "Dest called()"<<endl;
    }
};

int main()
{ 
    try
    {       
        ExceptionInConstructor ex; 
    }
    catch(...)
    {}  
    return 0;
 }

1 个答案:

答案 0 :(得分:1)

您尚未在视图类中设置/home/bella/samples/gruop_3属性,因此不会对内容进行分页。

paginated_by