Wkhtmltopdf 修补了 angularjs 的 QT 问题

Wkhtmltopdf patched QT issue with angularjs

当 运行 带有补丁 Qt 的任何版本的 wkhtmltopdf 时,我得到这个 JavaScript 错误:

Warning: undefined:0 Error: [$injector:modulerr] Failed to instantiate module ng due to:
'undefined' is not an object
http://errors.angularjs.org/1.5.7/$injector/modulerrp0=ng&p1='undefined'%20is%20not%20an%20object

(我正在尝试使用 angularjs 1.5 呈现页面)。

当我使用未打补丁的 Qt 版本的 wkhtmltopdf 时,我没有收到错误并且一切正常。

我使用 this heroku buildpack 安装带有补丁 Qt 的 0.12.3 版本,但出现此错误。

知道如何解决我的问题吗?我可以安装 wkhtmltopdf 而无需在生产环境中修补 Qt,但似乎我必须编译它...

我终于设法让它适用于所有版本:我需要一个特殊版本的 .bind() JavaScript 函数 polyfill:

var isFunction = function (o) {
return typeof o == 'function';
};

var bind,
slice = [].slice,
proto = Function.prototype,
featureMap;

featureMap = {
'function-bind': 'bind'
};

function has(feature) {
  var prop = featureMap[feature];
  return isFunction(proto[prop]);
}

// check for missing features
if (!has('function-bind')) {
  // adapted from Mozilla Developer Network example at
  // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/bind
  bind = function bind(obj) {
    var args = slice.call(arguments, 1),
      self = this,
      nop = function() {
      },
      bound = function() {
        return self.apply(this instanceof nop ? this : (obj || {}), args.concat(slice.call(arguments)));
      };
    nop.prototype = this.prototype || {}; // Firefox cries sometimes if prototype is undefined
    bound.prototype = new nop();
    return bound;
  };
  proto.bind = bind;
}