我正在构建一个Webportal,其中一些文本字段是日期选择器。当我们单击日期选择器时,会出现一个日期选择选项卡来选择日期,但是该字段不允许手动输入日期。
我要求用户可以同时获得两个选项,从日期弹出菜单中选择或可以手动输入。
这是一个简单的代码:
class Post
def image_url
Rails.application.routes.url_helpers.rails_blob_path(self.image, only_path: true)
end
end
# controller
render :json => @post.as_json(methods: :image_url)
答案 0 :(得分:1)
尝试这个jquery示例https://jqueryui.com/resources/demos/datepicker/default.html 您可以像这样手动输入日期
07/12/1993
您可以在此处找到更多信息-> https://jqueryui.com/datepicker/
我自己使用过,强烈推荐。