質問編集履歴
5
修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
field
|
1
|
+
読み取り専用fieldsにfilterにかけて値を取得したい(django-rest-framework)
|
test
CHANGED
File without changes
|
4
修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
fieldのないデータをfilterにかけて値を取得したい(django-rest-framework)
|
test
CHANGED
File without changes
|
3
修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
modelにないカラムのデータをfilterにかけて値を取得したい(django-rest-framework)
|
1
|
+
nmodelにないカラムのデータをfilterにかけて値を取得したい(django-rest-framework)
|
test
CHANGED
@@ -36,7 +36,7 @@
|
|
36
36
|
|
37
37
|
```
|
38
38
|
|
39
|
-
first_nameとlast_nameの頭文字をとって
|
39
|
+
first_nameとlast_nameの頭文字をとってthでクエリパラメータを投げたらfull_nameの条件一致している値を取得。
|
40
40
|
|
41
41
|
|
42
42
|
|
2
名前の変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,9 +20,9 @@
|
|
20
20
|
|
21
21
|
jsonの表示内容 { first_name: 'tanaka',
|
22
22
|
|
23
|
-
last_name: '
|
23
|
+
last_name: 'hanako',
|
24
24
|
|
25
|
-
full_name: 'tanaka_
|
25
|
+
full_name: 'tanaka_hanako'←この値の事
|
26
26
|
|
27
27
|
}
|
28
28
|
|
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
|
42
42
|
|
43
|
-
http://localhost:8000/person/?full_name=
|
43
|
+
http://localhost:8000/person/?full_name=th/
|
44
44
|
|
45
45
|
|
46
46
|
|
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
{
|
52
52
|
|
53
|
-
full_name: 'tanaka_
|
53
|
+
full_name: 'tanaka_hanako'
|
54
54
|
|
55
55
|
}
|
56
56
|
|
1
カラムの内容について
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,11 +18,11 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
jsonの表示内容 { first_name: '
|
21
|
+
jsonの表示内容 { first_name: 'tanaka',
|
22
22
|
|
23
|
-
last_name: 'a
|
23
|
+
last_name: 'tarou',
|
24
24
|
|
25
|
-
full_name: '
|
25
|
+
full_name: 'tanaka_tarou'←この値の事
|
26
26
|
|
27
27
|
}
|
28
28
|
|
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
{
|
52
52
|
|
53
|
-
full_name: '
|
53
|
+
full_name: 'tanaka_tarou'
|
54
54
|
|
55
55
|
}
|
56
56
|
|