-
除了
django.contrib.syndication.views.Feed
Feed
類還提供以下覆蓋。請注意,這些覆蓋可以通過多種方式完成:from django.contrib.gis.feeds import Feed class MyFeed(Feed): # First, as a class attribute. geometry = ... item_geometry = ... # Also a function with no arguments def geometry(self): ... def item_geometry(self): ... # And as a function with a single argument def geometry(self, obj): ... def item_geometry(self, item): ...
本文介紹 django.contrib.gis.feeds.Feed
的用法。
聲明
class Feed
相關用法
- Python Django Feed.item_geometry用法及代碼示例
- Python Django Feed.geometry用法及代碼示例
- Python Django Feature.get用法及代碼示例
- Python Django Feature.fid用法及代碼示例
- Python Django Feature.layer_name用法及代碼示例
- Python Django Feature.index用法及代碼示例
- Python Django Feature.geom用法及代碼示例
- Python Django File.save用法及代碼示例
- Python Django Field.description用法及代碼示例
- Python Django FormView用法及代碼示例
- Python File next()用法及代碼示例
- Python Django Form.default_renderer用法及代碼示例
- Python Django Form.as_p用法及代碼示例
- Python File tell()用法及代碼示例
- Python Django Floor用法及代碼示例
- Python Django Field.type_name用法及代碼示例
- Python Django ForeignKey.on_delete用法及代碼示例
- Python Django Field.help_text用法及代碼示例
- Python File seek()用法及代碼示例
- Python OpenCV Filter2D()用法及代碼示例
- Python File writable()用法及代碼示例
- Python File close()用法及代碼示例
- Python Django FileField.upload_to用法及代碼示例
- Python Float轉Int用法及代碼示例
- Python File flush()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.contrib.gis.feeds.Feed。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。