Mike %!s(int64=3) %!d(string=hai) anos
pai
achega
5d93bb329e
Modificáronse 1 ficheiros con 7 adicións e 1 borrados
  1. 7 1
      api/main.py

+ 7 - 1
api/main.py

@@ -51,7 +51,13 @@ def get_db_connection():
 @app.get("/check")
 async def checkCellphone(cellphone: str = '0975-516-501'):
     # 手機號碼清單
-    cellphone_list = cellphone.split("\n")
+    temp_list = cellphone.split("\n")
+    cellphone_list = []
+
+    for t in temp_list:
+        if t:
+            cellphone_list.append(t)
+
     cellphone_list = "','".join(cellphone_list)
 
     # cellphone_list = cellphone.replace("\n", ",")