本文整理汇总了Python中models.Url.actualUrl方法的典型用法代码示例。如果您正苦于以下问题:Python Url.actualUrl方法的具体用法?Python Url.actualUrl怎么用?Python Url.actualUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Url
的用法示例。
在下文中一共展示了Url.actualUrl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: shortenUrl
# 需要导入模块: from models import Url [as 别名]
# 或者: from models.Url import actualUrl [as 别名]
def shortenUrl(request):
if request.method == "GET":
t = get_template("index.html")
return HttpResponse(t.render())
if request.method == "POST":
url = request.POST.get("urlToShorten","")
if url == "":
return HttpResponseRedirect("/")
try:
if not ("http://" in url) or not ("https://" in url):
url="http://"+url
val(url)
except ValidationError,e:
t = get_template("invalid.html")
return HttpResponse(t.render())
url = url.replace("http://","")
url = url.replace("https://","")
QS = Url.objects.all().filter(actualUrl=url)
if(len(QS)>0):
UrlObject = QS[0]
t = get_template("shortened.html")
return HttpResponse(t.render(Context({"actual_url":url, "shortened_url":dehydrate(UrlObject.id)})))
mUrl = Url()
mUrl.actualUrl = url
mUrl.save()
# mUrl.shortenedUrl = shorten(url)
t = get_template("shortened.html")
return HttpResponse(t.render(Context({"actual_url":url, "shortened_url":dehydrate(mUrl.id)})))