2
嘿由於某種原因,在我的模板這個if/else語句不工作:爲什麼If/Else Spacebars標籤不起作用?
<div class="col-md-4">
<div class="row">
<div id="custom-search-input">
<div class="form-group col-md-12">
<div class="input-group col-md-12">
{{#if addingSubreddit}}
<input class="form-control input-lg" type="text">
<span class="input-group-btn" style="width: 2%;">
<button class="btn btn-info btn-lg" id="addSubreddit" type="submit">
<i class="glyphicon glyphicon-plus"></i>
</button>
{{else}}
<button id="newSubreddit" class="btn btn-info btn-lg" type="submit">
<i class="glyphicon glyphicon-plus"></i>
</button>
{{/if}}
</span>
</div>
</div>
</div>
</div>
</div>
它給我這個錯誤:
Your app is crashing. Here's the latest log.
Errors prevented startup:
While building the application:
client/views/subreddits.html:14: Unexpected {{else}}
...n> {{else}} hey ...
^
Your application has errors. Waiting for file change.
我想不通爲什麼不起作用?
感謝這個解決了這個問題。我習慣於使用haml,所以我總是忘記關閉標籤! – Harazzy