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 handler.get() 方法
- Proxy handler.setPrototypeOf() 方法
- Proxy handler.getPrototypeOf() 方法
- Proxy handler.getOwnPropertyDescriptor() 方法
- Proxy handler.construct() 方法Struct
- Proxy handler.apply() 方法APP
- 淺談jQuery中$.proxy()工具方法jQuery
- Proxy代理資料攔截方法
- 前端跨域方法之proxy(代理)前端跨域
- 使用 `open-uri.with_proxy` 方法開啟網頁網頁
- Many To Many could not initialize proxy – no Session的解決方法Session
- Proxy
- 通過代理抓取網頁code方法 proxy httpurlconnection網頁HTTP
- docker – nginx – proxy_pass + proxy_redirectDockerNginx
- nginx proxy_pass 和 proxy_redirectNginx
- Proxy模式模式
- MySQL ProxyMySql
- proxy 收集
- ShardingSphere-Proxy 前端協議問題排查方法及案例前端協議
- 使用Proxy.newProxyInstance包裝物件池,免去returnObject方法呼叫物件Object
- 代理模式(Proxy)模式
- JavaScript 之 ProxyJavaScript
- 配置proxy代理
- jQuery.proxy()jQuery
- http proxy原理HTTP
- MySQL Proxy應用入門(1)--安裝MySQL ProxyMySql
- Nginx伺服器的反向代理proxy_pass配置方法講解Nginx伺服器
- MySQL Proxy應用入門(2)--MySQL Proxy配置選項MySql
- 代理(Proxy)的解析
- Proxy使用詳解
- 4.1.1Proxy元件元件
- MySQL Proxy的用途MySql
- Rpc Call ProxyRPC
- mysql proxy安裝MySql
- could not initialize proxy - no SessionSession
- 代理模式(Proxy Pattern)模式
- zabbix分散式proxy分散式
- go 語言 proxy.golang.org timeout 無法訪問 處理方法Golang