我(Haskell 新手)正在尝试对从网页收到的 ByteString 执行解包操作。基本上我想从网页中搜索几个单词,所以我试图标记流,然后从单词中搜索单词。
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]'.