服务器已打开
SyntaxError:编译ejs时,/ home / michael / DemoApp / views / posts.ejs中出现意外令牌=
def form_valid(self, form):
if 'save_as' in self.request.POST:
form = self.form_class(self.request.POST, self.request.FILES) # Just changing the instance of the form.
form.is_valid()
return super(PageEdit, self).form_valid(form)
服务器已打开
SyntaxError:编译ejs时,/ home / michael / DemoApp / views / posts.ejs中出现意外令牌=
答案 0 :(得分:0)
请我已经看到错误是我的错
答案 1 :(得分:0)
在您的代码中,您有var = i
-这是错误。应该是:
<% for(var i = 0; i < posts.length; i++){ %>
<li>
<%= posts[i].title %> - <strong><%= posts[i].author
%></strong>
</li>
<% } %>