Invalid pk \"1\" - object does not exist.

2019-02-25 Thread optvisitor
getting error


{"manager":["Invalid pk \"1\" - object does not exist."]}


here is my model class

class Employee(models.Model):

MANAGER = 'MGR'
STANDARD = 'STD'


EMPLOYEE_TYPES = (

(MANAGER, 'manager'),
(STANDARD, 'employee')

)


role = models.CharField(max_length=25, choices=EMPLOYEE_TYPES)
name = models.CharField(max_length=100, null=True, blank=True)
employee_id = models.CharField(max_length=100, null=True, blank=True)
manager = models.ForeignKey('self', null=True, 
related_name='employee',on_delete=models.CASCADE)


and json data which i am using to save in table

{
  "role":"MGR",
  "name":"John",
  "employee_id" :"IN",
  "manager":1
  
  }




-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/454e6708-d6f6-43ee-8542-85d92a69d1cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to create model for this json data

2019-02-19 Thread optvisitor


On Tuesday, February 19, 2019 at 10:02:32 PM UTC+5:30, optvi...@gmail.com 
wrote:
>
> Hi I have data like this 
> { 
> "Name" : "pk", 
> "Applist" : ["zom","bc"], 
>  "Url":   ["As","de"] 
>
> } 
>
> How to define field name for list I am not getting


i define a class with foreign key but still getting error?

class keywordfield(models.Model):
keyword=models.CharField(max_length=50,null=True)
appNamefield=models.ForeignKey("appNamefield", on_delete=models.CASCADE)






class appNamefield(models.Model):
appName = models.CharField(max_length=50,null=True)


serializer class
class appDetailsSearilizer(serializers.ModelSerializer):
class Meta:
model = keywordfield


fields = ('id','keyword','appNamefield')

json data

{
  
"keyword": "food",
  "appNamefield":["j","l"]

  
}


error
dict_items([('required', 'This field is required.'), ('null', 'This field may 
not be null.'), ('invalid', 'Invalid data. Expected a dictionary, but got 
{datatype}.')])

 




 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/914062e6-1475-4653-8010-58a43b5bacb6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to create model for this json data

2019-02-19 Thread optvisitor
Hi I have data like this
{
"Name" : "pk",
"Applist" : ["zom","bc"],
 "Url":   ["As","de"]

}

How to define field name for list I am not getting

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/1dbdd1f4-6d19-4cc7-828b-e360395edf6e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.