本文整理匯總了Python中iktomi.web.reverse.URL.get_readable方法的典型用法代碼示例。如果您正苦於以下問題:Python URL.get_readable方法的具體用法?Python URL.get_readable怎麽用?Python URL.get_readable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類iktomi.web.reverse.URL
的用法示例。
在下文中一共展示了URL.get_readable方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_quotted_path_to_constructor
# 需要導入模塊: from iktomi.web.reverse import URL [as 別名]
# 或者: from iktomi.web.reverse.URL import get_readable [as 別名]
def test_quotted_path_to_constructor(self):
u = URL(u'/%D1%83/',
host=u'xn--80aswg.xn--p1ai',
query={'q': u'%D0%BF'},
fragment=u"%D1%8F")
# We shold not try to unquote the urlqouted values!
# Otherwise it is impossible to build a consistent interface
self.assertEqual(u, u'http://xn--80aswg.xn--p1ai/%25D1%2583/?q=%25D0%25BF#%25D1%258F')
self.assertEqual(u.get_readable(), u'http://сайт.рф/%25D1%2583/?q=%25D0%25BF#%25D1%258F')
示例2: test_no_quote
# 需要導入模塊: from iktomi.web.reverse import URL [as 別名]
# 或者: from iktomi.web.reverse.URL import get_readable [as 別名]
def test_no_quote(self):
u = URL(u'/урл/', host=u'сайт.рф', query={'q': u'поиск'})
self.assertEqual(u.get_readable(), u'http://сайт.рф/урл/?q=поиск')