我使用 Bitbucket 作为免费存储库。 当我推入master分支时,我想要上传文件。 我在master上推送文件时出错:
正在上传... 致命:无法上传文件。,退出...
我的管道配置是:
image: node:8.9.1
pipelines:
default:
- step:
caches:
- node
script: # Modify the commands below to build your repository.
# - npm install
- apt-get update
- apt-get -qq install git-ftp
- git config git-ftp.user $SFTP_USERNAME
- git config git-ftp.password $SFTP_PASSWORD
- git config git-ftp.url sftp://$SFTP_HOST:22/$SFTP_FOLDER
- git ftp init
我的变量在 Bitbucket 中定义。
我确定变量中添加的标识符。这是SFTP方面的问题吗?我是否需要在服务器上添加配置线?
答案 0 :(得分:1)
试试这个:
jQuery.ajax(
{
type: "POST",
url: "<?php echo base_url(); ?>" + "class/student/" ,
data: formData,
processData: false,
contentType: false,
success: function(res)
{
console.log(res);
},
});