作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
(!) 问题无法在本地重现。
Azure 函数版本 ~4
Node 版本 14.18.1
创建一个简单的 HTTP 触发 Azure 函数并设置两个简单的属性,我们得到以下代码:
module.exports = async function (context, req) {
req.auth = {authField: 'some value'}
req.user = {userField: 'some value'}
context.log(`${JSON.stringify(req,null,2)}`);
context.res = {
body: 'responseMessage'
};
}
记录器打印以下对象:
{
"method": "POST",
"url": "xxx",
"originalUrl": "xxx",
"headers": {
/// ...
},
"query": {},
"params": {},
"body": { "name": "Azure" },
"rawBody": "{\"name\":\"Azure\"}",
"auth": { "authField": "some value" }
}
如您所见,仅设置了 auth
而未设置 user
。在版本 4.2.0
中可以看到相同的失败行为。
当我使用 Azure Function ~3 进行测试时,输出如下所示:
{
"method": "POST",
"url": "xxx",
"originalUrl": "xxx",
"headers": {
// ...
},
"query": {},
"params": {},
"body": { "name": "Azure" },
"rawBody": "{\"name\":\"Azure\"}",
"auth": { "authField": "some value" },
"user": { "userField": "some value" }
}
如您所见,该字段已设置。以下自定义 v4 4.1.0-17156
还设置了 user
字段。
我们通过express-jwt 使用了字段user
(v6.1.0) 即 using当没有为 requestProperty
提供任何值时。
我还不能重现它,但在从 Typescript 项目转译出来时,我们得到以下运行时错误:
FailureException: Cannot set property user of [object Object] which has only a getterStack: TypeError: Cannot set property user of [object Object] which has only a getterat Object.run
问题从2022年4月26日开始。
问题:
最佳答案
我在 this 中找到了罪魁祸首PR,这是为 Azure Function runtime v4.2.0 添加的。
用户字段只添加了一个getter。
我们获取了代码并制作了最小示例:
class Request {
#cachedUser?: string | null;
constructor() {
}
get user(): string | null {
if (this.#cachedUser === undefined) {
this.#cachedUser = "some value";
}
return this.#cachedUser;
}
}
并得到以下转译版本:
var __classPrivateFieldGet =
(this && this.__classPrivateFieldGet) ||
function (receiver, state, kind, f) {
if (kind === 'a' && !f) throw new TypeError('Private accessor was defined without a getter')
if (typeof state === 'function' ? receiver !== state || !f : !state.has(receiver))
throw new TypeError('Cannot read private member from an object whose class did not declare it')
return kind === 'm' ? f : kind === 'a' ? f.call(receiver) : f ? f.value : state.get(receiver)
}
var __classPrivateFieldSet =
(this && this.__classPrivateFieldSet) ||
function (receiver, state, value, kind, f) {
if (kind === 'm') throw new TypeError('Private method is not writable')
if (kind === 'a' && !f) throw new TypeError('Private accessor was defined without a setter')
if (typeof state === 'function' ? receiver !== state || !f : !state.has(receiver))
throw new TypeError('Cannot write private member to an object whose class did not declare it')
return kind === 'a' ? f.call(receiver, value) : f ? (f.value = value) : state.set(receiver, value), value
}
var _Request_cachedUser
class Request {
constructor() {
_Request_cachedUser.set(this, void 0)
}
get user() {
if (__classPrivateFieldGet(this, _Request_cachedUser, 'f') === undefined) {
__classPrivateFieldSet(this, _Request_cachedUser, 'some value', 'f')
}
return __classPrivateFieldGet(this, _Request_cachedUser, 'f')
}
}
_Request_cachedUser = new WeakMap()
// this section is added for testing
const request = new Request()
request.user = 'new value'
console.log(JSON.stringify(request.user))
因此,它总是返回初始值,在我们的示例中是“某个值”,但在原始代码中只是undefined
并且不允许设置它。
关于node.js - Azure Function 在 2022 年 4 月 26 日禁用了将 "user"字段设置为 HTTP 请求对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72047284/
我是一名优秀的程序员,十分优秀!