Proxy handler.deleteProperty() 方法
關於Proxy更多內容可以參閱Proxy和Reflect一章節。
此方法會攔截delete刪除屬性操作,返回一個布林值用來標識刪除操作是否成功。
語法結構:
[JavaScript] 純文字檢視 複製程式碼var p = new Proxy(target, { deleteProperty: function (target, property) { //code } })
引數解析:
(1).target:可選,被代理的目標物件。
(2).property:可選,要被刪除的屬性名稱。
特別說明:不能刪除target物件的不可配置的自有屬性,否則會報錯。
程式碼例項:
[JavaScript] 純文字檢視 複製程式碼執行程式碼let antzone = { webName: "螞蟻部落", url:"www.softwhy.com" } let p = new Proxy(antzone, { deleteProperty: function(target, prop) { console.log(prop); Reflect.deleteProperty(target, prop); return true; } }); console.log(antzone.webName); delete p.webName; console.log(antzone.webName);
delete操作會被handler.deleteProperty()方法攔截,並進行相應的操作。
[JavaScript] 純文字檢視 複製程式碼執行程式碼var antzone = { webName: "螞蟻部落", url:"www.softwhy.com" } Object.defineProperty(antzone, "webName", { configurable: false }); var p = new Proxy(antzone, { deleteProperty: function(target, prop) { console.log(prop); Reflect.deleteProperty(target, prop); return true; } }); delete p.webName;
上面的程式碼會報錯,因為webName屬性是不可擴充套件的。
[JavaScript] 純文字檢視 複製程式碼執行程式碼var antzone = { webName: "螞蟻部落", url:"www.softwhy.com" } Object.defineProperty(antzone, "webName", { configurable: false }); var p = new Proxy(antzone, { deleteProperty: function(target, prop) { console.log(prop); Reflect.deleteProperty(target, prop); return true; } }); Reflect.deleteProperty(p.webName)
Reflect.deleteProperty()操作也會被handler.deleteProperty()方法攔截。
關於Reflect.deleteProperty()方法可以參閱Reflect.deleteProperty()方法一章節。
相關文章
- Proxy.revocable() 方法
- Proxy handler.has() 方法
- Proxy handler.get() 方法
- Proxy handler.getOwnPropertyDescriptor() 方法
- Proxy handler.apply() 方法APP
- Proxy handler.setPrototypeOf() 方法
- Proxy handler.defineProperty() 方法
- Proxy handler.getPrototypeOf() 方法
- Proxy handler.set() 方法
- Proxy handler.ownKeys() 方法
- Proxy handler.isExtensible() 方法
- Proxy handler.preventExtensions() 方法
- Proxy handler.construct() 方法Struct
- 淺談jQuery中$.proxy()工具方法jQuery
- Proxy代理資料攔截方法
- Many To Many could not initialize proxy – no Session的解決方法Session
- 使用 `open-uri.with_proxy` 方法開啟網頁網頁
- Proxy
- docker – nginx – proxy_pass + proxy_redirectDockerNginx
- ShardingSphere-Proxy 前端協議問題排查方法及案例前端協議
- Proxy invocationHandler
- Proxy模式模式
- proxy 收集
- Proxy 攔截
- Proxy介紹
- 代理模式(Proxy)模式
- 2.1.2.3 Proxy PDBs
- 初識Proxy
- JavaScript 之 ProxyJavaScript
- go 語言 proxy.golang.org timeout 無法訪問 處理方法Golang
- 代理(Proxy)的解析
- Cglib proxy探祕CGLib
- 代理模式(Proxy Pattern)模式
- Proxy使用詳解
- 安卓 no_proxy安卓
- zabbix分散式proxy分散式
- Proxy例項set()
- What are the benefits of using an proxy?