如何解决,TypeError:%不支持的操作数类型:'NoneType'和'int'

时间:2019-07-31 15:55:43

标签: python html css flask jinja2

以下是4个文件,每个文件由一系列“#”井号或hashTag符号分隔,后跟文件名。 该代码位于重音符号(`)之间。

问题是执行此python驱动的Web应用程序时,发生错误的位置是python文件“ evenOrOdd.py”中的行号11。 当您在网络浏览器上转到http://127.0.0.1:5000时,发生以下错误:

TypeError: unsupported operand type(s) for %: 'NoneType' and 'int'

点击此错误后,我将转到第11行。

第11行,python代码为:-

elif num%2==0:

第7行的变量“ num”定义为:-

num=int(request.form.get("numberInputFromForm"))

我尝试删除python文件“ evenOrOdd.py”的第7行上的int(),不起作用,仍然给出相同的错误。

而且我也尝试将“ num”变量转换为int()。

################################################ evenOrOdd.py
from flask import Flask, render_template, request

app=Flask("__name__")

@app.route("/", methods=["POST", "GET"])
def indexFunction():
    num=int(request.form.get("numberInputFromForm"))
    dict={'even':False, 'odd':False, 'zero':False, 'number_input':num}
    if num==0:
        dict['zero']=True
    elif num%2==0:
        dict['even']=True
    else:
        dict['odd']=True
    if request.method=="POST":
        return render_template("evenOrOdd.html", dict=dict)
    return render_template("index.html")
############################################# layout.html
<!DOCTYPE html>
<html>
  <head>
    <title>My Web Page</title>

    <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">

  </head>

  <body>
      <br>
      <h1>Python powered web app<h1>
      This application tells is a number is even or odd <br>
      {% block f %}  {% endblock %}

    <p>
      {% block p %}  {% endblock %}
    </p>

  </body>
</html>
############################################### index.html
{% extends "layout.html" %}

{% block f %}
  <form  action="{{url_for('indexFunction')}}" method="post">
    <input name='numberInputFromForm' type='number' placeholder="Enter number here...">
    <button> Submit </button>
  </form>
{% endblock %}
################################################ evenOrOdd.html
{% extends "layout.html" %}

{% block p %}
  {% if dict['even'] %}
    <h1> {{dict['number_input']}} is EVEN </h1>
  {% elif dict['odd'] %}
    <h1> {{dict['number_input']}} is ODD </h1>
  {% else %}
    <h1> {{dict['number_input']}} is ZERO </h1>
  {% endif %}
{% endblock %}

{% block f %}
  <form  action="{{url_for('indexFunction')}}" method="post">
    <input name='numberInputFromForm' type='number' placeholder="Enter number here...">
    <button> Submit </button>
  </form>
{% endblock %}

发生以下错误:- TypeError:%不支持的操作数类型:“ NoneType”和“ int”

1 个答案:

答案 0 :(得分:1)

要获取表单(我假设它位于“ index.html”中),请使用初始GET。除非您通过?numberInputFromForm=something,否则numberInputFromForm不会出现,而将显示为None

解决方法是保护依赖它的代码路径,以使该路径仅在POST上使用。像

if request.method == 'POST':
    num=int(request.form.get("numberInputFromForm"))
    ...
    return render_template("evenOrOdd.html", ...)
else:
    return render_template("index.html")