MongoDB Stitch client.executeFunction 不是函数
MongoDB Stitch client.executeFunction is not a function
我正在学习 https://docs.mongodb.com/stitch/getting-started/dashboard/ 上的仪表板教程
当我尝试绘制数据图表时,出现 Javascript 错误:
Uncaught (in promise) TypeError: client.executeFunction is not a function
at buildGraph ((index):62)
at eval ((index):15)
at <anonymous>
这是由以下行引起的:
client.executeFunction("SalesTimeline", (now - duration), now)
executeFunction 不是客户端中的方法,因此可能实例化客户端的方式不正确,但是,到目前为止,我只是简单地复制了 MongoDB 中的代码,我不知道哪里出了问题。
教程中有错误
<script src="https://s3.amazonaws.com/stitch-sdks/js/library/stable/stitch.min.js"></script>
应该是:
<script src="https://s3.amazonaws.com/stitch-sdks/js/library/v2/stable/stitch.min.js"></script>
感谢 Mike@MongoDB 提供解决方案。
我正在学习 https://docs.mongodb.com/stitch/getting-started/dashboard/ 上的仪表板教程 当我尝试绘制数据图表时,出现 Javascript 错误:
Uncaught (in promise) TypeError: client.executeFunction is not a function
at buildGraph ((index):62)
at eval ((index):15)
at <anonymous>
这是由以下行引起的:
client.executeFunction("SalesTimeline", (now - duration), now)
executeFunction 不是客户端中的方法,因此可能实例化客户端的方式不正确,但是,到目前为止,我只是简单地复制了 MongoDB 中的代码,我不知道哪里出了问题。
教程中有错误
<script src="https://s3.amazonaws.com/stitch-sdks/js/library/stable/stitch.min.js"></script>
应该是:
<script src="https://s3.amazonaws.com/stitch-sdks/js/library/v2/stable/stitch.min.js"></script>
感谢 Mike@MongoDB 提供解决方案。