0

我需要在 Sproutcore 中调用 restful web 服务,这需要 http 请求的身份验证标头。我在 Sproutcore 中编写了类似的代码:

authHeader: function () {
    var userAndPass = "username:password";
    var auth = "Basic " + Base64.encode(userAndPass);
    return auth;
},

但是,当我运行它时,没有定义 sadi Base64。

任何人都知道如何修复它或在 sproutcore 中完成它。谢谢

4

1 回答 1

3

用于btoa()Base-64 编码。

var auth = "Basic " + btoa(userAndPass);
于 2012-05-15T03:55:14.320 回答