我有疑问,我想将数据从我的 PC(Windows)发送到数据库(back4app.com)。为此,我可以将 API 请求与 cURL 一起使用。我在数据库中保存数据的代码:
curl -X POST -d @testFile.txt \
-H "X-Parse-Application-Id: MY_KEY" \
-H "X-Parse-REST-API-Key: API_KEY" \
https://parseapi.back4app.com/classes/check
在我的 testFile.txt 我有这样的数据:
Text=TextLable&body=checkSaving2&data=20.12.2017
Text=TextLable&body=checkSaving2&data=20.12.2017
Text=TextLable&body=checkSaving2&data=20.12.2017
Text=TextLable&body=checkSaving2&data=20.12.2017
Text=TextLable&body=checkSaving2&data=20.12.2017
Text=TextLable&body=checkSaving2&data=20.12.2017
Text=TextLable&body=checkSaving2&data=20.12.2017
Text=TextLable&body=checkSaving2&data=20.12.2017
在我的数据库中,我在一列中收到所有数据:
但我需要每一列中的每一行。前任:
Column - Text: Column - body: Column - data:
TextLable checkSaving2. 20.12.2017
TextLable checkSaving2. 20.12.2017
TextLable checkSaving2. 20.12.2017
TextLable checkSaving2. 20.12.2017
TextLable checkSaving2. 20.12.2017
所以,我怎么能像上面的例子一样,将我的数据保存在数据库中