0
如何在我的Apigee API代理中正確包含並使用Moment.js?如何在Apigee API代理中使用Moment.js?
在包括在策略中的版本2.8.2:<IncludeURL>jsc://include/moment.min.js</IncludeURL>
無論我嘗試在我的主JavaScript文件中使用它,API請求始終會返回一個錯誤:
{
"fault": {
"faultstring": "Execution of reformatBookingDetails failed with error: Javascript runtime error: \"Cannot modify a property of a sealed object: moment. (reformatBookingDetails_js#6)\"",
"detail": {
"errorcode": "steps.javascript.ScriptExecutionFailed"
}
}
}
我也嘗試以下。而不是使用IncludeURL
我手動複製了我的主JavaScript文件頂部的Moment.js代碼。但我得到了同樣的錯誤。
更新: 我試過以前版本的Moment.js,我發現版本2.5.1沒有這個問題。這個問題似乎已經在2.6.0中引入了