This commit is contained in:
g1879 2022-02-08 15:14:32 +08:00
parent 2000e04645
commit 40ea494cb1
3 changed files with 20 additions and 2 deletions

View File

@ -683,7 +683,7 @@ class DriverOptions(Options):
self.binary_location = chrome_path
if local_port is not None:
self.debugger_address = f'127.0.0.1:{local_port}'
self.debugger_address = '' if local_port == '' else f'127.0.0.1:{local_port}'
if debugger_address is not None:
self.debugger_address = debugger_address

View File

@ -356,7 +356,7 @@ class MixPage(SessionPage, DriverPage, BasePage):
def post(self,
url: str,
data: Union[dict, str] = None,
go_anyway: bool = False,
go_anyway: bool = True,
show_errmsg: bool = False,
retry: int = None,
interval: float = None,

View File

@ -79,6 +79,24 @@ page.post('http://example.com', data=data)
page.post('http://example.com', json=data)
```
`data`参数和`json`参数都可接收`str``dict`格式数据,即有以下 4 种传递数据的方式:
```python
# 向 data 参数传入字符串
page.post(url, data='xxx')
# 向 data 参数传入字典
page.post(url, data={'xxx': 'xxx'})
# 向 json 参数传入字符串
page.post(url, json='xxx')
# 向 json 参数传入字典
page.post(url, json={'xxx': 'xxx'})
```
# 其它请求方式
本库只针对常用的 get 和 post 方式作了优化,但也可以通过提取页面对象内的`Session`对象以原生 requests 代码方式执行其它请求方式。当然,它们工作在 s 模式。