我们需要帮助更改Angular Material中Select组件中的滚动条.
以下演示已实施.
https://stackblitz.com/angular/bxbvndrpogl?file=app%2Fselect-reset-example.ts
但是,我需要帮助改变滚动条的宽度和样式.
我们正在使用 Python 中的 SOAP API。我们需要动态传递请求 xml 文件中的值。
test.xml文件:
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<Add xmlns="http://tempuri.org/">
<intA>3</intA>
<intB>4</intB>
</Add>
</Body>
</Envelope>
Run Code Online (Sandbox Code Playgroud)
Python脚本:
from bs4 import BeautifulSoup
import requests
import xml.etree.ElementTree as ET
import lxml
url="http://www.dneonline.com/calculator.asmx?WSDL"
headers = {'content-type': 'text/xml'}
xmlfile = open('test.xml','r')
body = xmlfile.read()
response = requests.post(url,data=body,headers=headers)
print(response.text)
Run Code Online (Sandbox Code Playgroud)
我们需要从 python 动态传递 intA 和 intB。