简体   繁体   English

mongodb 缝合 function 在使用节点模式 @jimp 时出错

[英]mongodb stitch function is having error in using node modeule @jimp

I am using mongodb stitch function on database trigger to read image from URL using node js jimp module https://www.npmjs.com/package/jimp I am using mongodb stitch function on database trigger to read image from URL using node js jimp module https://www.npmjs.com/package/jimp

I have uploaded jimp as external dependency to stitch function.我已经上传 jimp 作为外部依赖来拼接 function。 Below is code i am using in function下面是我在 function 中使用的代码

const jimp = require('jimp');
const imageUrl = "https://images.unsplash.com/photo-1537454959372-885b35677ef5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80";
let image2 = await jimp.read(imageUrl);  

Getting below error while execution of function执行 function 时出现以下错误

Error:
failed to execute source for 'jimp': failed to execute source for 'node_modules/jimp/dist/@jimp/custom': failed to execute source for 'node_modules/@jimp/custom/dist/@jimp/core': failed to execute source for 'node_modules/@jimp/core/dist/utils/mime': failed to execute source for 'node_modules/@jimp/core/dist/utils/core-js/modules/es.array.includes': TypeError
    at defineProperty (<native code>)
    at <anonymous>:6:12670
    at defineProperty (node_modules/core-js/internals/typed-array-constructor.js:87:11)
    at node_modules/core-js/internals/create-non-enumerable-property.js:12:10
    at node_modules/core-js/internals/redefine.js:34:35
    at node_modules/core-js/internals/export.js:60:5
    at node_modules/core-js/modules/es.array.includes.js:16:1
    at node_modules/@jimp/core/dist/utils/mime.js:9:1
    at node_modules/@jimp/core/dist/index.js:160:36
    at node_modules/@jimp/custom/dist/index.js:44:37
    at node_modules/jimp/dist/index.js:14:38 

looks like jimp is using Array.prototype.includes看起来 jimp 正在使用Array.prototype.includes

it is currently not supported by stitch function目前针迹 function 不支持

Functions currently do not support the following ES6+ features:

 - New Global Object Types (i.e. WeakMap, Set, WeakSet, Symbol, Proxy)
 - New Math, Number, String, Array, and Object APIs (e.g.   
   Array.prototype.includes)

reference: https://docs.mongodb.com/stitch/functions/参考: https://docs.mongodb.com/stitch/functions/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM