Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 0864f73

Browse files
authored
docs($compileProvider): improve strictComponentBindingsEnabled info
Related to #16303 Closes #16306
1 parent c15c8a1 commit 0864f73

File tree

2 files changed

+39
-8
lines changed

2 files changed

+39
-8
lines changed

docs/content/error/$compile/missingattr.ngdoc

+31-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
@fullName Missing required attribute
44
@description
55

6-
This error may occur only when `$compileProvider.strictComponentBindingsEnabled` is set to `true`.
7-
Then all attributes mentioned in `bindings` without `?` must be set. If one or more aren't set,
8-
the first one will throw an error.
6+
This error may occur only when {@link $compileProvider#strictComponentBindingsEnabled `$compileProvider.strictComponentBindingsEnabled`} is set to `true`.
7+
8+
If that is the case, then all {@link $compileProvider#component component} controller bindings and
9+
{@link $compileProvider#directive directive} scope / controller bindings that are non-optional,
10+
must be provided when the directive is instantiated.
11+
12+
To make a binding optional, add '?' to the definition.
13+
14+
## Example:
15+
16+
```js
17+
18+
app.component('myTest', {
19+
bindings: {
20+
first: '=?', // optional
21+
second: '='
22+
},
23+
controller: function() {
24+
...
25+
},
26+
template: '...'
27+
});
28+
29+
```
30+
31+
This component will throw `missingattr` for the `second` binding when used as follows:
32+
33+
```html
34+
<my-test></my-test>
35+
```
36+

src/ng/compile.js

+8-5
Original file line numberDiff line numberDiff line change
@@ -1415,16 +1415,19 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
14151415
* @ngdoc method
14161416
* @name $compileProvider#strictComponentBindingsEnabled
14171417
*
1418-
* @param {boolean=} enabled update the strictComponentBindingsEnabled state if provided, otherwise just return the
1419-
* current strictComponentBindingsEnabled state
1418+
* @param {boolean=} enabled update the strictComponentBindingsEnabled state if provided,
1419+
* otherwise return the current strictComponentBindingsEnabled state.
14201420
* @returns {*} current value if used as getter or itself (chaining) if used as setter
14211421
*
14221422
* @kind function
14231423
*
14241424
* @description
1425-
* Call this method to enable/disable strict component bindings check. If enabled, the compiler will enforce that
1426-
* for all bindings of a component that are not set as optional with `?`, an attribute needs to be provided
1427-
* on the component's HTML tag.
1425+
* Call this method to enable / disable the strict component bindings check. If enabled, the
1426+
* compiler will enforce that all scope / controller bindings of a
1427+
* {@link $compileProvider#directive directive} / {@link $compileProvider#component component}
1428+
* that are not set as optional with `?`, must be provided when the directive is instantiated.
1429+
* If not provided, the compiler will throw the
1430+
* {@link error/$compile/missingattr $compile:missingattr error}.
14281431
*
14291432
* The default value is false.
14301433
*/

0 commit comments

Comments
 (0)