質問編集履歴

2

ごじ

2020/08/12 12:16

投稿

Mario_11
Mario_11

スコア95

test CHANGED
File without changes
test CHANGED
@@ -138,12 +138,24 @@
138
138
 
139
139
  ```html
140
140
 
141
- <input type="hidden" name="subItem_set-TOTAL_FORMS" value="6" id="id_subItem_set-TOTAL_FORMS">
141
+ <input type="hidden" name="subitem_set-TOTAL_FORMS" value="6" id="id_subitem_set-TOTAL_FORMS">
142
142
 
143
- <input type="hidden" name="subItem_set-INITIAL_FORMS" value="6" id="id_subItem_set-INITIAL_FORMS">
143
+ <input type="hidden" name="subitem_set-INITIAL_FORMS" value="6" id="id_subitem_set-INITIAL_FORMS">
144
144
 
145
- <input type="hidden" name="subItem_set-MIN_NUM_FORMS" value="0" id="id_subItem_set-MIN_NUM_FORMS">
145
+ <input type="hidden" name="subitem_set-MIN_NUM_FORMS" value="0" id="id_subitem_set-MIN_NUM_FORMS">
146
146
 
147
- <input type="hidden" name="subItem_set-MAX_NUM_FORMS" value="6" id="id_subItem_set-MAX_NUM_FORMS">
147
+ <input type="hidden" name="subitem_set-MAX_NUM_FORMS" value="6" id="id_subitem_set-MAX_NUM_FORMS">
148
148
 
149
149
  ```
150
+
151
+ `print(formset)`を行いその中で気になった点を抜粋しました。
152
+
153
+ ```ここに言語を入力
154
+
155
+
156
+
157
+ </select><input type="hidden" name="subitem_set-4-id" id="id_subitem_set-4-id"><input type="hidden" name="subitem_set-4-target" id="id_subitem_set-4-target"></td></tr> <tr><td colspan="2"><ul class="errorlist nonfield"><li>(隠しフィールド id) このフィールドは必須です。</li></ul></td></tr>
158
+
159
+
160
+
161
+ ```

1

追記

2020/08/12 12:16

投稿

Mario_11
Mario_11

スコア95

test CHANGED
File without changes
test CHANGED
@@ -123,3 +123,27 @@
123
123
  やれることは全てやったつもりなのですが、どうもうまくいきません。
124
124
 
125
125
  アドバイスをいただきたいです。よろしくお願いいたします。
126
+
127
+
128
+
129
+ #追記です
130
+
131
+ 自分でもいろいろ調べてChromeの検証ツールで原因を調べました。
132
+
133
+ そこで、設定しているはずのない`hidden`と書かれた項目があり、これが原因かなと思っているのですが。
134
+
135
+ 消し方が解らず、そもそもエラーの原因なのか、何の用途に使用するのかがわかりません。
136
+
137
+ もしわかる方がいれば教えてください。よろしくお願いいたします。
138
+
139
+ ```html
140
+
141
+ <input type="hidden" name="subItem_set-TOTAL_FORMS" value="6" id="id_subItem_set-TOTAL_FORMS">
142
+
143
+ <input type="hidden" name="subItem_set-INITIAL_FORMS" value="6" id="id_subItem_set-INITIAL_FORMS">
144
+
145
+ <input type="hidden" name="subItem_set-MIN_NUM_FORMS" value="0" id="id_subItem_set-MIN_NUM_FORMS">
146
+
147
+ <input type="hidden" name="subItem_set-MAX_NUM_FORMS" value="6" id="id_subItem_set-MAX_NUM_FORMS">
148
+
149
+ ```