我是水晶初学者。我有疑问,也许有人可以帮助我。
我使用 Kemal 框架。有这个代码:
require "kemal"
require "json"
channel = Channel(Card).new
post "/posts" do |env|
json = JSON.parse(env.request.body as String)
url = json["url"].to_s
spawn do
# Slow process
page = Scraper.new(url)
channel.send(page)
end
{"url" => url}.to_json
end
ws "/" do |socket|
data = channel.receive
socket.send data.to_h.to_json
end
Kemal.run
但是结果只发送到 web socket 一次。
(仅在第一次发布请求后)
我该如何解决?