最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - TypeError Base64 is not a function when using Buffer.from in Node 4.3 - Stack Overflow

programmeradmin1浏览0评论

I am debugging a lambda function locally on Node 4.3 using the standard Amazon Machine Image (linux x64)

When I run the program, I get an error in a function that is meant to decode a base64 string to utf-8. The error says

Unhandled rejection TypeError: base64 is not a function
    at Function.from (native)
    at Function.from (native)
    at /home/ec2-user/sass-piler/lib/piler.module.js:26:30

My code seems rather simple. I have checked around SO and the node 4.3 docs and my code seems pliant. Any ideas what I might be doing wrong?

template() {
        return new Promise((resolve, reject) => {
            let buf = Buffer.from(this._opts.tpl, 'base64').toString('utf-8');
            let _tpl = _.template(buf);
            resolve(_tpl(this._opts.opts));
        });
    }

EDIT The program works just fine on Windows 10 using Node LTS 6.9.5

I am debugging a lambda function locally on Node 4.3 using the standard Amazon Machine Image (linux x64)

When I run the program, I get an error in a function that is meant to decode a base64 string to utf-8. The error says

Unhandled rejection TypeError: base64 is not a function
    at Function.from (native)
    at Function.from (native)
    at /home/ec2-user/sass-piler/lib/piler.module.js:26:30

My code seems rather simple. I have checked around SO and the node 4.3 docs and my code seems pliant. Any ideas what I might be doing wrong?

template() {
        return new Promise((resolve, reject) => {
            let buf = Buffer.from(this._opts.tpl, 'base64').toString('utf-8');
            let _tpl = _.template(buf);
            resolve(_tpl(this._opts.opts));
        });
    }

EDIT The program works just fine on Windows 10 using Node LTS 6.9.5

Share Improve this question edited Feb 15, 2017 at 21:53 Taylor Ackley asked Feb 15, 2017 at 21:45 Taylor AckleyTaylor Ackley 1,4371 gold badge18 silver badges34 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

I finally found an answer on Stack Overflow that answers this question.

NodeJS: How to decode base64 encoded string back to binary?

In node 5.3 & below, you need to use the buffer constructor (ie: new Buffer) instead of Buffer.from

发布评论

评论列表(0)

  1. 暂无评论