作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 eval 或函数构造函数在 Azure Cosmos 存储过程中动态创建函数。
让我们举个例子:
let fnStr = "function(){return 1; }" ; // string could contain any thing like a complex function
并且想要在azure cosmos存储过程中使用
let fun =eval(fnStr);
fun();
但不幸的是,Azure cosmos 不支持“eval”和“Function”构造函数。
我们还有其他选择吗?
最佳答案
您应该能够在存储过程主体中编写适当的函数并调用它。例如,我编写了一个返回当前日期/时间的函数,然后从存储过程内部调用该函数。像这样的东西:
function helloWorld() {
function getCurrentDate() {
return new Date();
}
var xyz = getCurrentDate();
var response = getContext().getResponse();
response.setBody(xyz);
}
这样的东西行不通吗?
关于azure - 如何将函数字符串转换为Azure COSMOS DB存储过程中的实际函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61386427/
我是一名优秀的程序员,十分优秀!