讓說的用戶可以訪問以下網址在Django,Django的TemplateSyntaxError組合模板標籤
someUrl/one
someUrl/two
someUrl/three
一個,兩個,三個來自一個表,這樣我可以與ORM訪問它們,例如,表名時。數。我的問題是我怎麼寫他們在我的模板,我試着用
<source src="{% static "someUrl/"{{ tableName.number }} "%}"/>
,但我得到一個TemplateSyntaxError。
Could not parse the remainder: 'someUrl/" {{ tableName.number }} "' from '" "someUrl/" {{ tableName.number }} "'
如果我嘗試
<source src="{% static "someUrl/{{ tableName.number }}" "%}"/>
我得到
Could not parse the remainder: 'audio/{{' from '" "audio/{{'
什麼是做了正確的方法是什麼?
有什麼錯誤訊息? – ozgur
我更新錯誤信息 – djangog