我正在新机器上安装迦太基。
var dataURL = canvas.toDataURL();
$.ajax({
type: "POST",
url: "image/upload",
data: {
imgBase64: dataURL
}
}).done(function(o) {
console.log('saved');
});
$ brew install Carthage
[in project root] $ emacs Cartfile
# Alamofire
github "Alamofire/Alamofire"
# SwifyJSON
github "SwiftyJSON/SwiftyJSON"
$ carthage update
(6次失败)
答案 0 :(得分:1)
Building scheme "Alamofire iOS" in Alamofire.xcworkspace
for get before version将此内容写入carthage
github "Alamofire/Alamofire" >= 4.2.0
在github中查看realese项目,了解swift版本的选择版本
你也可以在运行carthage时选择平台 示例
carthage update --platform iOS