ઉકેલાયેલ: પોસ્ટ મેટ્રિક્સમાંથી ડીજેંગો અર્ક એરે

મુખ્ય સમસ્યા એ છે કે Django પોસ્ટ મેટ્રિક્સમાંથી NumPy એરેને બદલે Python સૂચિ તરીકે એરેને બહાર કાઢે છે. જો તમને એરે પર કોઈપણ પ્રકારની ગાણિતિક ક્રિયાઓ કરવાની જરૂર હોય તો આ સમસ્યા તરફ દોરી શકે છે, કારણ કે NumPy એરે તે પ્રકારના કામ માટે વધુ કાર્યક્ષમ છે.

મારી પાસે મારા HTML પૃષ્ઠમાં એક મેટ્રિક્સ છે જે હું મારા જેંગો વ્યૂ પર પોસ્ટ કરી રહ્યો છું. મેટ્રિક્સ એ સૂચિઓની સૂચિ છે, અને હું પોસ્ટ કરેલા ડેટામાંથી વ્યક્તિગત સૂચિઓ કાઢવા માંગુ છું. હું આ કેવી રીતે કરી શકું?
મારી પાસે અત્યાર સુધી જે છે તે અહીં છે:
def myview(request):
if request.method == 'POST': # If the form has been submitted...
form = MyForm(request.POST) # A form bound to the POST data

if form.is_valid(): # All validation rules pass

# Process the data in form.cleaned_data

return HttpResponseRedirect('/thanks/') # Redirect after POST

else:
form = MyForm() # An unbound form

return render(request, 'mytemplate.html', {'form':form})

In mytemplate.html, મારી પાસે ચેકબોક્સનું મેટ્રિક્સ છે જે આના જેવું દેખાય છે:
<table><tr><td>1,1 <input type="checkbox" name="matrix[0][0]" value="1" /> </td> <td> 1,2 <input type="checkbox" name="matrix[0][1]" value="1" />" </td>" <"td"="" 1,3="" "="" input="" type="checkbox" name=matrix[0][2] value=1 /"" ""="" td="" tr="" table="" xtml-space:"preserve"" xmlns:xtml-space="http://www." w3corg/xml/1998/namespace"" xmlns_w3corg="/xmlns/" xml:"lang=en-us"" lang=en-us"" http://www."" w3corg/1999xhtml"" xmlns_w3corg="/1999/" html:"xmlns=http://www."" w3corg/" lang=en-us""" class="container">2,1 &"nbsp;" 2,2 "nbsp;" 2," 3 "nbsp;" 3," 1 "nbsp;" 3," 2 "nbsp;" 3," 3 "nbsp;" 4," 1 "nbsp;" 4," 2 "nbsp;" 4," 3 "" nbsp ; "" 5 , "" 1 "" nbsp ; "" 5 , "" 2 "" nbsp ; "" 5 , """ 6 ," """ 7 ," """ 8 ," """ 9 ," """ 10 ," """ 11 ," """ 12 ," """ 13 ," """ 14 , "
rntttt14,2
rn t t t 14

Related posts:

Leave a Comment