如何使用CoffeeScript重新同步setTimeout()? Rails 5

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用CoffeeScript重新同步setTimeout()? Rails 5相关的知识,希望对你有一定的参考价值。

我为我的AJAX通知代码开发了一个coffeescript。代码本身没有问题。我遇到的问题是,我决定使用setTimeout()而不是setInterval()来避免耗尽线程并导致严重拥塞。我很少使用coffeescript,我需要帮助确定如何正确循环setTimeout函数。在setTimeout使用getNewNotifications()方法成功接收数据后,如何调用递归方法调用?

notifications.coffee

class Notifications
  constructor: ->
    @notifications = $("[data-behavior='notifications']")

    if @notifications.length > 0
      @handleSuccess @notifications.data("notifications")
      $("[data-behavior='notifications-link']").on "click", @handleClick

    setTimeout (=>
      @getNewNotifications()
    ), 5000

  getNewNotifications: ->
    $.ajax(
      url: "/new_notification_check.json"
      dataType: "JSON"
      method: "GET"
      success: @handleSuccess
    )

  handleClick: (e) =>
    $.ajax(
      url: "/notifications/mark_as_read"
      dataType: "JSON"
      method: "POST"
      success: ->
        $("[data-behavior='unread-count']").text(0)
    )

  handleSuccess: (data) =>
    items = $.map data, (notification) ->
      notification.template

    unread_count = 0
    $.each data, (i, notification) ->
      if notification.unread
         unread_count += 1

    $("[data-behavior='unread-count']").text(unread_count)
    $("[data-behavior='notification-items']").html(items)

jQuery ->
  new Notifications
答案

我相信你应该能够在setTimeout上添加一个handleSuccess,这将创建你正在寻找的递归调用:

notifications.coffee

class Notifications
  constructor: ->
    @notifications = $("[data-behavior='notifications']")

    if @notifications.length > 0
      @handleSuccess @notifications.data("notifications")
      $("[data-behavior='notifications-link']").on "click", @handleClick

    setTimeout (=>
      @getNewNotifications()
    ), 5000

  getNewNotifications: ->
    $.ajax(
      url: "/new_notification_check.json"
      dataType: "JSON"
      method: "GET"
      success: @handleSuccess
    )

  handleClick: (e) =>
    $.ajax(
      url: "/notifications/mark_as_read"
      dataType: "JSON"
      method: "POST"
      success: ->
        $("[data-behavior='unread-count']").text(0)
    )

  handleSuccess: (data) =>
    items = $.map data, (notification) ->
      notification.template

    unread_count = 0
    $.each data, (i, notification) ->
      if notification.unread
         unread_count += 1

    $("[data-behavior='unread-count']").text(unread_count)
    $("[data-behavior='notification-items']").html(items)

    setTimeout (=>
      @getNewNotifications()
    ), 5000        

jQuery ->
  new Notifications
另一答案

这可以使用promises / async / await更加干净地完成,尽管您可能必须将JS输出转换为浏览器兼容。

抽象方法可以在以下示例中看到。

test = ->
  for i in [1,2,3]
    await new Promise (resolve, reject) ->
      setTimeout ->
        console.log(i)
        resolve()
      , 1000

# run asynchronously
setTimeout test

console.log("async loop is running")

运行此脚本按顺序打印每个数字,每个数字之间有1秒的延迟,然后退出。

就你的代码而言,它并没有那么不同。 $.ajax支持async / await(guide),因此您可以将getNewNotifications方法更改为此

getNewNotifications: ->
  await $.ajax(
    url: "/new_notification_check.json"
    dataType: "JSON"
    method: "GET"
  )

并在构造函数中调用此:

setTimeout =>
  loop
    await new Promise (resolve, reject) =>
      setTimeout =>
        results = await @getNewNotifications()
        @handleSuccess(results)
        resolve()
      , 5000

这很好,因为它不需要回调或递归

以上是关于如何使用CoffeeScript重新同步setTimeout()? Rails 5的主要内容,如果未能解决你的问题,请参考以下文章

CoffeeScript - 如何在 ruby​​ on rails 中使用咖啡脚本?

导轨 3.1。如何防止 Rails 使用 CoffeeScript?

CoffeeScript:如何同时使用胖箭头和 this?

如何使用 JSDoc 记录 CoffeeScript 源代码?

如何使用 CoffeeScript 将多个项目放入 JSON 对象?

每次 Gulpfile 更改后如何重新启动 Gulp?