这是我使用JSP的代码:
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
这是我尝试的:
<input type="hidden" name="${_csrf.parameterName}" th:attr="value = ${_csrf.token}"/>
我不知道如何将值归因于html的名称。
答案 0 :(得分:1)
这应该是这样的:
op.create_table(
'user',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('username', sa.String(length=250), nullable=True),
sa.Column('email', sa.String(length=500), nullable=True),
sa.PrimaryKeyConstraint('id'),
sa.UniqueConstraint('username')
)