例子
const proxy = new Proxy(new Date(), {})
proxy.getDate()
// Uncaught TypeError: this is not a Date object.
const proxy = new Proxy(new Date(), {})
proxy.getDate()
// Uncaught TypeError: this is not a Date object.
本文标题:JavaScript(Proxy)
本文链接:https://www.haomeiwen.com/subject/luzhpttx.html
网友评论