新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
# DOMException
|
|
|
|
This package implements the [`DOMException`](https://heycam.github.io/webidl/#idl-DOMException) class, from web browsers. It exists in service of [jsdom](https://github.com/tmpvar/jsdom) and related packages.
|
|
|
|
Example usage:
|
|
|
|
```js
|
|
const DOMException = require("domexception");
|
|
|
|
const e1 = new DOMException("Something went wrong", "BadThingsError");
|
|
console.assert(e1.name === "BadThingsError");
|
|
console.assert(e1.code === 0);
|
|
|
|
const e2 = new DOMException("Another exciting error message", "NoModificationAllowedError");
|
|
console.assert(e2.name === "NoModificationAllowedError");
|
|
console.assert(e2.code === 7);
|
|
|
|
console.assert(DOMException.INUSE_ATTRIBUTE_ERR === 10);
|
|
```
|
|
|
|
## APIs
|
|
|
|
This package exposes two flavors of the `DOMException` interface depending on the imported module.
|
|
|
|
### `domexception` module
|
|
|
|
This module default-exports the `DOMException` interface constructor.
|
|
|
|
### `domexception/webidl2js-wrapper` module
|
|
|
|
This module exports the `DOMException` [interface wrapper API](https://github.com/jsdom/webidl2js#for-interfaces) generated by [webidl2js](https://github.com/jsdom/webidl2js).
|