組合了兩個模型中沒有len()。一個模型的字段被註釋到另一個模型,以便它們可以合併。但是,當我嘗試返回數據時,我得到了TypeError: object of type 'Response' has no len()。我已經在stackoverflow上跟着幾個例子,它似乎並沒有工作。 這是我有: class ExploreAPIView(generics.ListAPIView):
我試圖創建一個按鈕,它將在AWS中創建一個S3存儲桶,一旦點擊。當談到Django時,我仍然有點綠色,所以我不知道如何讓它運行。我閱讀了一些教程,但所有這些教程都展示了在單擊按鈕時如何向數據庫添加內容。 這是我迄今所做的: views.py class createS3(TemplateView):
template_name = 'project/create_s3.html'
def g
我的Django模型是這樣的: class User(models.Model):
userid = models.CharField(max_length=26,unique=True)
#some more fields that are currently not relevant
class Followers(models.Model):
user =