如何代理 JavaScript 创建原语
How to proxy JavaScript creation primitive
我想在创建字符串时做一些事情,例如:
String = new Proxy(String, {
construct: (t, a) => {
return { a: 123 }
}
})
console.log(new String('q')) // { a: 123 }
但是,如果您使用基元,它就不起作用。
String = new Proxy(String, {
construct: (t, a) => {
return { a: 123 }
}
})
console.log('1') // Expected: { a: 123 }, Actual: 1
有什么办法吗?
那么第二个问题是,
当运行时转换原语时,我可以代理进程吗?
var a = '123' // This is a primitive
console.log('123'.substring(0,1)) // Actual: 1
// The runtime wraps the primitive as a String object.
// then uses a substring, and then returns the primitive.
现在:
String = new Proxy(String, {
construct: (t, a) => {
return { a: 123 }
},
apply: (target, object, args) => {
return { a: 123 }
}
})
console.log('1'.a) // Expected: 123 , Actual: undefined
我知道我可以在 String 的原型中添加 'a' 来实现预期。
但我希望能够代理访问原语的任意 属性。
(是 '1'.*
,不是 '1'.a
)
有什么办法吗?
感谢您的回答。
不,这是不可能的。代理仅适用于对象,不适用于基元。不,您不能拦截将原语转换为对象以访问其属性(包括方法)的内部(和优化)过程。
一些涉及基元的操作确实使用了String.prototype
/ Number.prototype
/ Boolean.prototype
上的方法,如果你敢的话可以覆盖这些方法,但你不能替换代理的整个原型对象。
我想在创建字符串时做一些事情,例如:
String = new Proxy(String, {
construct: (t, a) => {
return { a: 123 }
}
})
console.log(new String('q')) // { a: 123 }
但是,如果您使用基元,它就不起作用。
String = new Proxy(String, {
construct: (t, a) => {
return { a: 123 }
}
})
console.log('1') // Expected: { a: 123 }, Actual: 1
有什么办法吗?
那么第二个问题是, 当运行时转换原语时,我可以代理进程吗?
var a = '123' // This is a primitive
console.log('123'.substring(0,1)) // Actual: 1
// The runtime wraps the primitive as a String object.
// then uses a substring, and then returns the primitive.
现在:
String = new Proxy(String, {
construct: (t, a) => {
return { a: 123 }
},
apply: (target, object, args) => {
return { a: 123 }
}
})
console.log('1'.a) // Expected: 123 , Actual: undefined
我知道我可以在 String 的原型中添加 'a' 来实现预期。
但我希望能够代理访问原语的任意 属性。
(是 '1'.*
,不是 '1'.a
)
有什么办法吗?
感谢您的回答。
不,这是不可能的。代理仅适用于对象,不适用于基元。不,您不能拦截将原语转换为对象以访问其属性(包括方法)的内部(和优化)过程。
一些涉及基元的操作确实使用了String.prototype
/ Number.prototype
/ Boolean.prototype
上的方法,如果你敢的话可以覆盖这些方法,但你不能替换代理的整个原型对象。