回答編集履歴
2
訂正
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
```python
|
2
2
|
|
3
|
-
question.tag =
|
3
|
+
question.tag = Tags( id=int(self.request.get_all('tag')[0] )
|
4
4
|
|
5
5
|
```
|
6
6
|
|
1
訂正
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
```python
|
2
2
|
|
3
|
-
question.tag = int(self.request.get_all('tag')[0])
|
3
|
+
question.tag = tags( id=int(self.request.get_all('tag')[0] )
|
4
4
|
|
5
5
|
```
|
6
6
|
|