from djangoviewsdecoratorscsrf import csrf_exempt
在你的函数前面加上csrf_exempt装饰器
例如:
@csrf_exempt
def get_A(request):
另外,在模板里,在form标签里加上{% csrf_token %}
例如:
<form action= method="post">
{% csrf_token %}
<input type=“text" name="a" >test</input>
你用这个试试,我简单测试了一下。
这个是匹配整个tr的,你看看可行
$str = '<table class="listTable" width="99%" border="1" align="center" ><tbody>
<tr align="center">
<td colspan="2" rowspan="10">中文1</td>
<td>229104</td>
<td align="left">中文2</td>
</tr>
<tr align="center">
<td colspan="2" rowspan="10">中文1</td>
<td>229104</td>
<td align="left">中文2</td>
</tr>
</tbody>
</table>';
preg_match_all('/<tr[^>]>[^<]<td[^>]>()<\/td>[^<][^<]<td[^>]>()<\/td>[^<][^<]<td[^>]>()<\/td>[^<]<\/tr>/isU', $str, $matches);
echo "<pre>";
var_dump($matches);
exit;
以上就是关于django 用视图函数获取html form中的用户输入值全部的内容,包括:django 用视图函数获取html form中的用户输入值、php preg_match_all函数提取html数据、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)