我(Haskell的新手)我試圖對從網頁收到的ByteString執行解包操作。基本上我想從網頁搜索幾個詞,所以我試圖標記化流,然後從單詞中搜索單詞。瞭解haskell中的錯誤
Prelude Network.HTTP.Conduit LB> LB.unpack (simpleHttp WebLink)
但我得到以下錯誤
<interactive>:75:12: error:
• Couldn't match expected type ‘LB.ByteString’
with actual type ‘m0 LB.ByteString’
• In the first argument of ‘LB.unpack’, namely...
從hackage我可以看到,它的簽名是
unpack :: ByteString -> [Word8] Source
O(n) Converts a ByteString to a '[Word8]'.
托馬斯感謝您的答覆問題和解釋。你能建議一些鏈接或一些例子來做你的建議嗎? – Manvi