我有一个WKWebView,我需要检测是否有任何@csrf_protect
def article(request, article_id=1):
comment_form = CommentForm()
args = {}
args['article'] = Article.objects.get(id=article_id)
args['comments'] = Comments.objects.filter(comments_artile_id=article_id)
args['form'] = comment_form
return render (request, 'articles.html', args)
从WKWebView开始播放。
我正在尝试这种方法:
media-content(audio/video)
。 。 。但所有时间都返回NO。
答案 0 :(得分:0)
我做了一个研究,答案是模拟器中有一个错误,所有时间都会返回NO。在真实设备上它会返回YES。