gpt4 book ai didi

rebol - 在 rebol 中读取不成功的 http 数据

转载 作者:行者123 更新时间:2023-12-04 20:08:18 25 4
gpt4 key购买 nike

有没有办法读取不成功的 http 数据,例如 404 , 在 Rebol?当open为一个失败的 URL 获取一个不成功的 http 响应代码,但我想改为阅读响应。

最佳答案

我知道这很粗略,但它适用于 Rebol 2。你可以使用 http 协议(protocol)方案

 h: get in system/schemes 'http

然后你把它写到一个文件中
write %ht mold h

并编辑此文件。在那里你替换这条线
result: select either tunnel [tunnel-actions] [response-actions] response-code 


port/status: response-code 
result: case [
tunnel [
select tunnel-actions response-code
]
not find response-actions response-code [
return response-code
]
true [
select response-actions response-code
]
]

然后你必须替换原来的方案。添加
Rebol []
system/schemes/http:
在您的 ht 文件的开头并使用 do %ht

关于rebol - 在 rebol 中读取不成功的 http 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22710349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com