Mike 3 years ago
parent
commit
23164a5cd6
1 changed files with 5 additions and 1 deletions
  1. 5 1
      api/main.py

+ 5 - 1
api/main.py

@@ -51,7 +51,11 @@ def get_db_connection():
 @app.get("/check")
 async def checkCellphone(cellphone: str = '0975-516-501'):
     # 手機號碼清單
-    cellphone_list = cellphone.replace("\n", ",")
+    cellphone_list = cellphone.split("\n")
+    cellphone_list = ','.join(cellphone_list)
+
+    # cellphone_list = cellphone.replace("\n", ",")
+    # cellphone_list = cellphone_list
     print ('cellphone_list = ' + cellphone_list)
     
     # 取得資料庫連線