J'essaie d'utiliser des vues basées sur les classes et j'obtiens une erreur étrange. La façon dont j'utilise la vue semble être la manière normale:
ingrédients/models.py:
from Django.db import models
from Django.utils import timezone
class Ingredient(models.Model):
name = models.CharField(max_length=255)
description = models.TextField()
def get_prices():
purchases = self.purchase_set.all()
prices = [purchase.price for purchase in purchases]
ingrédients/views.py:
from Django.shortcuts import render, render_to_response, redirect
from Django.http import HttpResponse, HttpResponseRedirect
from Django.views.generic.edit import CreateView
from .models import Ingredient, Purchase
def IngredientCreateView(CreateView):
model = Ingredient
fields = ['all']
ingrédients/urls.py:
from Django.conf.urls import patterns, include, url
from ingredients.views import IngredientCreateView
urlpatterns = patterns('',
url(r'^new_ingredient$', IngredientCreateView.as_view(), name='new-ingredient'),
)
Je reçois
AttributeError at /ingredients/new_ingredient
'function' object has no attribute 'as_view'
Je suis sur Django 1.8.5. Pourquoi cette vue ne fonctionnera-t-elle pas? Merci
IngredientCreateView
devrait être une classe. Donc votre views.py remplace:
def IngredientCreateView(CreateView):
avec:
class IngredientCreateView(CreateView):
IngredientCreateView
est une fonction, pas une classe.
La ligne suivante
def IngredientCreateView(CreateView):
devrait être remplacé par
class IngredientCreateView(CreateView):