创建待办事项

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建待办事项相关的知识,希望对你有一定的参考价值。

  1. require "rubygems"
  2. require "appscript"
  3. include Appscript
  4.  
  5. @things = app("Things")
  6. @todos = @things.to_dos
  7.  
  8.  
  9. def create_to_do(name,source,link)
  10. unless @todos[its.name.eq(name)].get.length > 0
  11. puts "Didn't find a thing named #{name}. Creating a task."
  12. if link == ""
  13. note = name
  14. else
  15. note = "[url=#{link}]#{name} - #{source}[/url]"
  16. end
  17.  
  18. task = @things.make(:at => app.lists["Today"].beginning, :new => :to_do, :with_properties => {
  19. :name => name,
  20. :tag_names => "panopticon,#{source}",
  21. :notes => note,
  22. :due_date => Time.now + 8.hours
  23. })
  24. end
  25. end

以上是关于创建待办事项的主要内容,如果未能解决你的问题,请参考以下文章

无法在初始渲染中显示待办事项列表

Drupal 视图和待办事项列表

C++ 待办事项列表重复输入。如何避免这种情况?

反应类组件。待办事项应用程序。如何使用 localStorage 存储数据

无法从 Listview 中删除项目(待办事项列表),长按没有任何反应

如何使用React删除待办事项列表中的项目