这是我在网络模块中的网址
private const val BASE_URL = "http://localhost:192.168.29.20/api/"
我收到错误了
引起:java.lang.IllegalArgumentException:无效的 URL 端口:“*************”
应该是
"http://Your_URL:Your_Port/api/"
。
可能你想要类似的东西
"http://192.168.29.20:some_number/api/"
其中“some_number”代表您尝试使用的端口。