ドキュメントから何かを学ぶのに問題があります。たとえば、.htmlメソッドにどのオプションが存在するかを知るにはどうすればよいですか?オプションオブジェクトを追加できるというだけですが、それらのオプションが何であるかはわかりません。ここで何が欠けていますか?
documentation から、.htmlモジュールの背後にあるコードを確認できます。
/**
* Generate a PDF from an HTML element or string using.
*
* @name html
* @function
* @param {Element|string} source The source element or HTML string.
* @param {Object=} options An object of optional settings.
* @description The Plugin needs html2canvas from niklasvh
*/
jsPDFAPI.html = function (src, options) {
'use strict';
options = options || {};
options.callback = options.callback || function () {};
options.html2canvas = options.html2canvas || {};
options.html2canvas.canvas = options.html2canvas.canvas || this.canvas;
options.jsPDF = options.jsPDF || this;
// Create a new worker with the given options.
var pdf = options.jsPDF;
var worker = new Worker(options);
if (!options.worker) {
// If worker is not set to true, perform the traditional 'simple' operation.
return worker.from(src).doCallback();
} else {
// Otherwise, return the worker for new Promise-based operation.
return worker;
}
return this;
};