0

我正在使用 HAML 和 jquery 来编写我的应用程序。我有一个用于显示 URL 链接的“共享”模板。我希望它灵活,以便根据传递给它的变量显示不同的 URL。

//Code to trigger view and populate template -> Note I only pass in the thread vara here
share_view = new Onethingaday.Views.Threads.ShareView
  thread: new Onethingaday.Models.Thread(@options.thread_muses.first().get('question'))

//snippet from share view to pass the variables to the template
render: ->
  $(@el).html @template
    nickname: @options.nickname
    thread_slug: @options.thread.get('slug')
    thread_text: @options.thread.get('text')
  @

//Snippet of share view's template. Added if-else statement to check if nickname is defined
.sidebar_text Link:
  <% if (typeof <%= nickname %> !== "undefined") { %>
  %input.detail_text{value: "<%= 'http://dailymus.es/' + nickname + '/threads/' + thread_slug %>"}
  <% } else { %>
  %input.detail_text{value: "<%= 'http://dailymus.es/' + '/threads/' + thread_slug %>"}
  <% } %>

在上面的例子中,我没有定义“昵称”变量。我希望 else 部分会被触发并且显示的 URL 是“ http://dailymus.es/threads/some-slug-text

但是我仍然得到以下

在此处输入图像描述

如您所见,它仍在触发“if”部分并将“未定义”显示为 URL 的一部分。

在我的情况下,如何正确检查“未定义”变量?

4

1 回答 1

1

当昵称已经合二为一时,您还需要将昵称包装在 <%=%> 中吗?

于 2012-04-18T18:00:48.557 回答