为什么 Flask 中的错误“AttributeError: 'NoneType' object ”

构建 Flask 应用程序,并尝试按日期/流行度更改条目/卡片的选择。我被困在这里是因为这个错误不是恒定的,它偶尔会触发。我希望我能让这个排序功能正常工作,然后看看这个问题,我认为这只是一个小错误。但是,现在错误更频繁地触发,我担心我只是在这种方法上浪费了我的时间;但我不知道。


App.py


def tester(page):


    limit = 6

    offset = (int(page) - 1) * limit


    requested = request.args.get('fromHTMLchoice')

    print(requested)

    requestChoice = requested.split()

    a = requestChoice[0]

    b = requestChoice[1]

    convertChoice = tuple(a[2:-2], int(b[:-1]))


    sagas_pages = sagas.find().sort(

                        [convertChoice]).skip(offset).limit(limit)


    return render_template(

                "tester.html",

                sagas_pages=sagas_pages, page=page

                      )

HTML


<form class="form-inline" method="GET" action="{{url_for('tester', page=1)}}">

            <div class="form-group">

                <div class="input-group">

                    <span class="input-group-addon">Please select</span>

                        <select name="fromHTMLchoice" class="selectpicker form-control">

                            <option value= "('totalLikes', -1)">Likes</option>

                            <option value= "('totalLikes', 1)">Dislikes</option>

                            <option value= "('_id', -1)">Most_Recent</option>

                            <option value= "('_id', 1)">Least_Recent</option>

                        </select>

                </div>

                <button type="submit" class="btn btn-default">Go</button>

            </div>

        </form>


繁花如伊
浏览 100回答 1
1回答

繁华开满天机

该 AttributeError 是问题的下游。要调试的问题是为什么requested&nbsp;=&nbsp;request.args.get('fromHTMLchoice') print(requested)某人打印None,就像日志顶部一样。安全的赌注是,不知何故,tester通过没有fromHTMLChoice参数的 URL 被调用。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python