Allows elements to mutate in response to user actions or data changes via data binding and simple JS-like expressions.
<script async custom-element="amp-bind" src="/cats-d8c4vu/amp.dev/shared/copy-script/#%3Cscript%20async%20custom-element%3D%22amp-bind%22%20src%3D%22https%3A/cdn.ampproject.org/v0/amp-bind-0.1.js%22%3E%3C/script%3E" class="i-amphtml-layout-fixed i-amphtml-layout-size-defined" style="width:24px;height:24px;" i-amphtml-layout="fixed">
The amp-bind component enables custom stateful interactivity on AMP pages.
amp-bind
For performance, and to avoid the risk of unexpected content jumping, amp-bind does not evaluate expressions on page load. This means visual elements should be given a default state and not rely on amp-bind for initial render.
amp-bind has three main concepts:
[property]
Hello World
<p [text]="'Hello ' + foo">Hello World</p> <button on="tap:AMP.setState({foo: 'Interactivity'})"> Say "Hello Interactivity" </button>
In the example above:
[text]
<p>
'Hello ' + foo
When the user taps/clicks the button:
tap
AMP.setState()
foo
Interactivity
<head> <style amp-custom> .greenBorder { border: 5px solid green; } .redBorder { border: 5px solid red; } .defaultBorder { border: 5px solid transparent; } </style> </head> <body> <amp-state id="theFood"> <script type="application/json"> { "cupcakes": { "imageUrl": "https://amp.dev/static/samples/img/image2.jpg", "style": "greenBorder" }, "sushi": { "imageUrl": "https://amp.dev/static/samples/img/image3.jpg", "style": "redBorder" } } </script> </amp-state> <div class="defaultBorder" [class]="theFood[currentMeal].style || 'defaultBorder'"> <p>Each food has a different border color.</p> <p [text]="'I want to eat ' + currentMeal + '.'">I want to eat cupcakes.</p> <amp-img width="300" height="200" src="https://amp.dev/static/samples/img/image2.jpg" [src]="theFood[currentMeal].imageUrl" > </amp-img> <button on="tap:AMP.setState({currentMeal: 'sushi'})">Set to sushi</button> <button on="tap:AMP.setState({currentMeal: 'cupcakes'})"> Set to cupcakes </button> </div> </body>
<amp-state>
id
theFood
<amp-bind>
<div>
class="greenBorder"
<amp-img>
src
[class]
theFood[currentMeal].style
'I want to eat ' + currentMeal + '.'
[src]
theFood[currentMeal].imageUrl
If a user clicks the "Set to sushi" button:
AMP.setState
currentMeal
sushi
[class]="theFood[currentMeal].style"
class
redBorder
[text]="'I want to eat ' + currentMeal + '.'"
[src]="theFood[currentMeal].imageUrl
https://amp.dev/static/samples/img/image3.jpg
Using [class]="theFood[currentMeal].style" as an example of expression syntax evaluation:
cupcakes
style
An amp-state element may contain either a child <script> element OR a src attribute containing a CORS URL to a remote JSON endpoint, but not both.
amp-state
<script>
<amp-state id="myLocalState"> <script type="application/json"> { "foo": "bar" } </script> </amp-state> <amp-state id="myRemoteState" src="https://data.com/articles.json"> </amp-state>
As an amp-state element stores a JSON object literal, you can also initialize it with an object, as above, or with a constant.
<amp-state id="singleton"> <script type="application/json"> 'I am a string' </script> </amp-state>
The URL of the remote endpoint that must return JSON, which is used to this amp-state. This must be a HTTP service with a proper CORS configuration for the page. The src attribute allows all standard URL variable substitutions. See the Substitutions Guide for more info.
AMP batches XMLHttpRequests (XHRs) to JSON endpoints, that is, you can use a single JSON data request as a data source for multiple consumers (e.g., multiple amp-state elements) on an AMP page.
For example, if your amp-state element makes an XHR to an endpoint, while the XHR is in flight, all subsequent XHRs to the same endpoint won't trigger and will instead return the results from the first XHR.
credentials
Defines a credentials option as specified by the Fetch API.
omit
include
To send credentials, pass the value of include. If this value is set, the response must follow the AMP CORS security guidelines.
refresh
The refresh action refetches data from data point the src attribute points to. This action will make a network request bypassing the browser's caching mechanisms.
<amp-state id="currentTime" src="/documentation/examples/api/time"></amp-state> <button on="tap:currentTime.refresh"> Refresh </button> <div [text]="currentTime.time"></div>
We recommend amp-script for most use cases working with live content. In a subset of cases, refresh with amp-bind will work.
amp-script
Each AMP document that uses amp-bind has document-scope mutable JSON data, or state.
An <amp-state> element's JSON data has a maximum size of 100KB.
Expressions are not evaluated on page load, but you may define an initial state. The <amp-state> component contains different states and their state variables. While this defines a state, it will not reflect on the page until after a user interacts.
<amp-state id="myDefinedState"> <script type="application/json"> { "foo": "bar" } </script> </amp-state> <p [text]="myDefinedState.foo"></p> <button on="tap:AMP.setState({})">See value of initialized state</button>
Use expressions to reference state variables. If the JSON data is not nested in the <amp-state> component, reference the states via dot syntax. In the above example, myState.foo evaluates to "bar".
myState.foo
An <amp-state> element can also specify a CORS URL instead of a child JSON script. See the <amp-state> specification for details.
<amp-state id="myRemoteState" src="/static/samples/json/websites.json"> </amp-state>
The AMP.setState() action merges an object literal into the state. This means you can update the value of a defined state variable.
<amp-state id="myUpdateState"> <script type="application/json"> { "foo": "bar", "baz": "hello" } </script> </amp-state> <p [text]="myUpdateState.foo"></p> <p [text]="myUpdateState.baz"></p> <button on="tap:AMP.setState({})">See value of set state</button> <!-- Like JavaScript, you can reference existing variables in the values of the object literal. --> <button on="tap:AMP.setState({myUpdateState:{baz: myUpdateState.foo}})"> Set value of baz to value of foo </button> <button on="tap:AMP.setState({myUpdateState:{baz: 'world'}})"> Set value of baz to "world" </button>
In the example above, triggering the AMP.setState({}) action on the first button evaluates the [text] binding expression. It then inserts the defined state variable's value into the <p> tag.
AMP.setState({})
When the clicking the second button, with AMP.setState({myState:{baz: myState.foo}}) action defined, it deep-merges the "baz" state variable value to the same as the "foo" state variable value. Both <p> tags display "bar".
AMP.setState({myState:{baz: myState.foo}})
State variable values can update to values not defined in the initial state. When clicking the third button, with "tap:AMP.setState({myState:{baz: 'world'}})" action defined, it deep merges the "baz" state variable value, overriding it to "world".
"tap:AMP.setState({myState:{baz: 'world'}})"
Clicking the first button after the other two sets the current state. Nothing will change.
The state variables reverts back to the defined JSON in <amp-state> on page refresh.
When triggered by certain events, AMP.setState() can access event-related data on the event property.
event
<!-- The "change" event of this <input> element contains a "value" variable that can be referenced via "event.value". --> <select on="change:AMP.setState({ option: event.value })"> <option value="0">No selection</option> <option value="1">Option 1</option> <option value="2">Option 2</option> </select> <div hidden [hidden]="option != 1"> Option 1 </div> <div hidden [hidden]="option != 2"> Option 2 </div>
Nested objects are generally merged to a maximum depth of 10. All variables, including those defined in <amp-state>, can be overidden.
<amp-state id="myState"> <script type="application/json"> { "foo": "bar", "first": { "a": "nested once", "ab": { "b": "nested twice", "bc": { "c": "nested three times", "cd": { "d": "nested four times", "de": { "e": "nested five times", "ef": { "f": "nested six times", "fg": { "g": "nested seven times", "gh": { "h": "nested nine times", "hi": { "i": "nested ten times" } } } } } } } } } } </script> </amp-state> <p [text]="myState.foo"></p> <p [text]="myState.first.ab.bc.cd.de.ef.fg.gh.hi.i"></p> <button on="tap:AMP.setState({})">See value of set state</button> <button on="tap:AMP.setState({ myState: {first: {ab: {bc: {cd: {de: {ef: {fg: {gh: {hi: {i:'this is as far as you should merge nested values'} } } } } } } } } } })" > Merge 10th nested object </button>
AMP.setState(object) throws an error if object contains a circular reference.
AMP.setState(object)
object
Remove an existing state variable by setting its value to null in AMP.setState().
null
<button on="tap:AMP.setState({removeMe: null})"></button>
Calling AMP.setState() deep-merges the provided object literal with the current state. amp-bind writes all literals to the state directly, except for nested objects, which are recursively merged. Primitives and arrays are in the state are always overwritten by variables of the same name in the object literal.
Name
Age
Vehicle
<p [text]="employee.name">Name</p> <p [text]="employee.age">Age</p> <p [text]="employee.vehicle">Vehicle</p> <!-- Pressing this button changes state to: --> <button on="tap:AMP.setState({ employee: { name: 'John Smith', age: 47, vehicle: 'Car' } })" > Set employee to John Smith </button> <!-- Pressing this button recursively merges the object literal argument, --> <!-- `{employee: {age: 64}}`, into the existing state. --> <button on="tap:AMP.setState({ employee: { age: 64 } })" > Set employee age to 64 </button> <!-- The value updates from 47 to 64 at employee.age. --> <!-- No other values change. -->
AMP.pushState()
AMP.pushState() writes state changes to the history. Navigating back, will restore the previous state. To test this, increase the count in the example below and use your browser's back button to decrease the count.
<amp-state id="count"> <script type="application/json"> 1 </script> </amp-state> <div>Item <span [text]="count">1</span></div> <button on="tap:AMP.pushState({ count: count + 1 })">Increase count</button>
Using AMP.pushState() sets the current state to the most recent pushed state.
amp-bind uses JavaScript-like expressions that can reference the state.
window
document
global
[1, 2, 3].map(x => x + 1)
undefined
The following are all valid expressions:
<p [text]="myExpressionsState.foo"></p> <!-- 1 + '1'; / 11 --> <button on="tap:AMP.setState({myExpressionsState: {foo: 1 + '1'}})"> foo: 1 + "1" </button> <!-- 1 + +'1'; / 2 --> <button on="tap:AMP.setState({myExpressionsState: {foo: 1 + + '1'}})"> foo: 1 + + "1" </button> <!-- !0; / true --> <button on="tap:AMP.setState({myExpressionsState: {foo: !0}})">foo: !0</button> <!-- null || 'default'; / 'default' --> <button on="tap:AMP.setState({myExpressionsState: {foo: null || 'default'}})"> null || "default" </button> <!-- [1, 2, 3].map(x => x + 1); / 2,3,4 --> <button on="tap:AMP.setState({myExpressionsState: {foo: [1, 2, 3].map(x => x + 1)}})" > [1, 2, 3].map(x => x + 1) </button>
Find the full expression grammar and implementation in bind-expression.js.
Array
Single-parameter arrow functions can't have parentheses, e.g. use x => x + 1 instead of (x) => x + 1. sort() and splice() return modified copies instead of operating in-place.
x => x + 1
(x) => x + 1
sort()
splice()
concat: 1, 2, 3
word.length > 3)" i-amphtml-binding> filter: words with less than three letter
includes: "hello" or "world"
indexOf: "world"
join: all words with a dash
lastIndexOf: "amp-bind"
x + i)" i-amphtml-binding> map: add each number to previous number
x + i)" i-amphtml-binding> reduce: add all numbers in array together
slice: return words at index 1 and 3
x < 2)" i-amphtml-binding> some: some numbers are less than 2
sort: place words in alphabetical order
splice: place "amp-bind" at index 2
<amp-state id="myArrayState"> <script type="application/json"> { "foo": [1, 2, 3], "bar": ["hello", "world", "bar", "baz"], "baz": "Hello world, welcome to amp-bind" } </script> </amp-state> <p [text]="'concat: ' + myArrayState.foo.concat(4)">concat: 1, 2, 3</p> <p [text]="'filter: ' + myArrayState.bar.filter(word => word.length > 3)"> filter: words with less than three letter </p> <p [text]="'includes: ' + myArrayState.bar.includes('hello' || 'world')"> includes: "hello" or "world" </p> <p [text]="'indexOf: ' + myArrayState.bar.indexOf('world')">indexOf: "world"</p> <p [text]="'join: ' + myArrayState.bar.join('-')"> join: all words with a dash </p> <p [text]="'lastIndexOf: ' + myArrayState.baz.lastIndexOf('amp-bind')"> lastIndexOf: "amp-bind" </p> <p [text]="'map: ' + myArrayState.foo.map((x, i) => x + i)"> map: add each number to previous number </p> <p [text]="'reduce: ' + myArrayState.foo.reduce((x, i) => x + i)"> reduce: add all numbers in array together </p> <p [text]="'slice: ' + myArrayState.bar.slice(1,3)"> slice: return words at index 1 and 3 </p> <p [text]="'some: ' + myArrayState.foo.some(x => x < 2)"> some: some numbers are less than 2 </p> <p [text]="'sort: ' + myArrayState.bar.sort()"> sort: place words in alphabetical order </p> <p [text]="'splice: ' + myArrayState.bar.splice(2, 0, 'amp-bind')"> splice: place "amp-bind" at index 2 </p> <button on="tap:AMP.setState({})">Evaluate</button>
Number
toExponential: 100 to the exponent of 5
toFixed: 1.99 rounded and fixed to first decimal
toPrecision: 1.234567 returned as a string to the third digit
toString: 3.14 returned as a string
<p [text]="'toExponential: ' + (100).toExponential(5)"> toExponential: 100 to the exponent of 5 </p> <p [text]="'toFixed: ' + (1.99).toFixed(1)"> toFixed: 1.99 rounded and fixed to first decimal </p> <p [text]="'toPrecision: ' + (1.234567).toPrecision(3)"> toPrecision: 1.234567 returned as a string to the third digit </p> <p [text]="'toString ' + (3.14).toString()"> toString: 3.14 returned as a string </p> <button on="tap:AMP.setState({})">Evaluate</button>
String
charAt: The character at index 6
charCodeAt: The UTF-16 code unit of the character at index 6
concat: Combine foo and bar
lastIndexOf: The index of "w"
replace: Replace "world" with "amp-bind"
slice: Extract the first 5 characters
split: Split words at space and return as array
toLowerCase: Make all letters lower case
toUpperCase: Make all letters upper case
<amp-state id="myStringState"> <script type="application/json"> { "foo": "Hello world", "bar": ", welcome to amp-bind" } </script> </amp-state> <p [text]="'charAt: ' + myStringState.foo.charAt(6)"> charAt: The character at index 6 </p> <p [text]="'charCodeAt: ' + myStringState.foo.charCodeAt(6)"> charCodeAt: The UTF-16 code unit of the character at index 6 </p> <p [text]="'concat: ' + myStringState.foo.concat(myState.bar)"> concat: Combine foo and bar </p> <p [text]="'lastIndexOf: ' + myStringState.foo.lastIndexOf('w')"> lastIndexOf: The index of "w" </p> <p [text]="'replace: ' + myStringState.foo.replace('world', 'amp-bind')"> replace: Replace "world" with "amp-bind" </p> <p [text]="'slice: ' + myStringState.foo.slice(5)"> slice: Extract the first 5 characters </p> <p [text]="'split: ' + myStringState.foo.split(' ')"> split: Split words at space and return as array </p> <p [text]="'toLowerCase: ' + myStringState.foo.toLowerCase()"> toLowerCase: Make all letters lower case </p> <p [text]="'toUpperCase: ' + myStringState.foo.toUpperCase()"> toUpperCase: Make all letters upper case </p> <button on="tap:AMP.setState({})">Evaluate</button>
Math
Static functions are not namespaced, e.g. use abs(-1) instead of Math.abs(-1)
abs(-1)
Math.abs(-1)
abs: absolute number of 5 - 9
abs: round 1.01 up to the next largest whole number
floor: round 1.99 down to a whole number
max: return largest number
min: return smalled number
pow: return 5 to the power of 3
random: return a number greater than 0 and less than 1
round: round 1.51
sign: evaluate if positive or negative
<p [text]="'abs: ' + abs(5 - 9)">abs: absolute number of 5 - 9</p> <p [text]="'ceil: ' + ceil(1.01)"> abs: round 1.01 up to the next largest whole number </p> <p [text]="'floor: ' + floor(1.99)">floor: round 1.99 down to a whole number</p> <p [text]="'max: ' + max(100, 4, 98)">max: return largest number</p> <p [text]="'min: ' + min(100, 4, 98)">min: return smalled number</p> <p [text]="'pow: ' + pow(5, 3)">pow: return 5 to the power of 3</p> <p [text]="'random: ' + random()"> random: return a number greater than 0 and less than 1 </p> <p [text]="'round: ' + round(1.51)">round: round 1.51</p> <p [text]="'sign: ' + sign(-9)">sign: evaluate if positive or negative</p> <button on="tap:AMP.setState({})">Evaluate</button>
Object
Static functions are not namespaced, e.g. use keys(Object) instead of Object.abs(Object)
keys(Object)
Object.abs(Object)
keys: myObjectState JSON object keys
values: myObjectState JSON object values
<amp-state id="myObjectState"> <script type="application/json"> { "hello": "world", "foo": "bar" } </script> </amp-state> <p [text]="'keys: ' + keys(myObjectState)"> keys: myObjectState JSON object keys </p> <p [text]="'values: ' + values(myObjectState)"> values: myObjectState JSON object values </p> <button on="tap:AMP.setState({})">Evaluate</button>
Global
encodeURI: Encode a URI and ignore protocol prefix
encodeURIComponent: Encode a URI
<p [text]="'encodeURI: ' + encodeURI('https://amp.dev/😉')"> encodeURI: Encode a URI and ignore protocol prefix </p> <p [text]="'encodeURIComponent: ' + encodeURIComponent('https://amp.dev/😉')"> encodeURIComponent: Encode a URI </p> <button on="tap:AMP.setState({})">Evaluate</button>
amp-bind-macro
Reuse amp-bind expression fragments by defining an amp-bind-macro. The amp-bind-macro element allows an expression that takes zero or more arguments and references the current state. Invoke amp-bind-macros like a function, referencing the id attribute value from anywhere in the document.
amp-bind-macros
Input a radius value
The circle has an area of 0.
<amp-bind-macro id="circleArea" arguments="radius" expression="3.14 * radius * radius" ></amp-bind-macro> <p> Input a radius value </p> <input type="number" min="0" max="100" value="0" on="input-throttled:AMP.setState({myCircle:{radius: event.value}})" /> <p> The circle has an area of <span [text]="circleArea(myCircle.radius)">0</span>. </p>
A macro can also call other macros defined before itself. A macro cannot call itself recursively.
A binding is a special attribute of the form [property] that links an element's property to an expression. Use the alternative,XML-compatible syntax if developing in XML.
When the state changes, expressions tied to that state are evaluated. The element properties bound to the state are updated with the new expression results.
Boolean expression results toggle boolean attributes. For example: <amp-video [controls]="expr"...>. When expr evaluates to true, the <amp-video> element has the controls attribute. When expr evaluates to false, the controls attribute is removed.
<amp-video [controls]="expr"...>
expr
true
<amp-video>
controls
false
This browser does not support the video element.
<amp-video [controls]="controls" width="640" height="360" layout="responsive" poster="/static/inline-examples/images/kitten-playing.png" > <source src="/static/inline-examples/videos/kitten-playing.webm" type="video/webm" /> <source src="/static/inline-examples/videos/kitten-playing.mp4" type="video/mp4" /> <div fallback> <p>This browser does not support the video element.</p> </div> </amp-video> <button on="tap:AMP.setState({ controls: true })"> Controls </button> <button on="tap:AMP.setState({ controls: false })"> No Controls </button>
If developing with React or XML, use the alternative data-amp-bind-property syntax. The [ and ] characters in attribute names is invalid XML, making the [property] syntax unavailable.
data-amp-bind-property
[
]
Replace the property field with the name of the property you would like to define in data-amp-bind-property.
property
For example, [text]="myState.foo" would become data-amp-bind-text="myState.foo".
[text]="myState.foo"
data-amp-bind-text="myState.foo"
amp-bind supports data bindings on five types of element state.
Node.textContent
Bind Node.textContent using the [text] attribute. The [text] attribute is supported on most text elements.
<p [text]="'Hello ' + myState.foo">Hello World</p> <p></p>
CSS classes
Bind an element's class using the [class] attribute. A [class] expression must result in a space-delimited string. Meaning, if you are binding multiple classes, use a space between names. A comma or dash will be evaluated as the class name.
<head> <style amp-custom> .background-green { background: green; } .background-red { background: red; } .border-red { border-color: red; border-width: 5px; border-style: solid; } </style> </head> <body> <div class="background-red" [class]="myClass">Hello World</div> <!-- This button adds both classes --> <button on="tap:AMP.setState({ myClass: 'background-green border-red' })"> Working: Change Class </button> <!-- String arrays also work --> <button on="tap:AMP.setState({ myClass: ['background-green', 'border-red'] })" > Working string array: Change Class </button> <!-- This expression evaluates to class="background-green,border-red" --> <button on="tap:AMP.setState({ myClass: 'background-green,border-red' })"> Broken: Change Class </button> </body>
the hidden attribute
hidden
Hide and reveal and element using the [hidden] attribute. A [hidden] expression should be a boolean expression.
[hidden]
Hello there!
<p [hidden]="hiddenState">Hello there!</p> <button on="tap:AMP.setState({hiddenState: true})">Hide</button> <button on="tap:AMP.setState({hiddenState: false})">Show</button>
Size of AMP components
Change the width and height using the [width] and [height] attributes.
width
height
[width]
[height]
<amp-img src="https://unsplash.it/400/200" width="200" [width]="myImageDimension.width" height="100" [height]="myImageDimension.height" > </amp-img> <button on="tap:AMP.setState({ myImageDimension: { width: 400, height: 200 } })" > Change size </button>
Accessibility states and properties
Use to dynamically update information available to assistive technologies, such as screen readers. All [aria-*] attributes are bindable.
[aria-*]
AMP Component specific and HTML attributes
Some AMP components and HTML elements have specific bindable attributes. They are listed below.
<amp-brightcove>
[data-account]
[data-embed]
[data-player]
[data-player-id]
[data-playlist-id]
[data-video-id]
<amp-carousel type=slides>
[slide]
See an example.
<amp-date-picker>
[min]
[max]
<amp-google-document-embed>
[title]
<amp-iframe>
[alt]
[attribution]
[srcset]
Bind to [srcset] instead of [src] to support responsive images. See corresponding amp-img attributes.
amp-img
<amp-lightbox>
[open]
on="lightboxClose: AMP.setState(...)"
<amp-list>
If the expression is a string, it fetches and renders JSON from the string URL. If the expression is an object or array, it renders the expression data.
<amp-selector>
[selected]
option
[disabled]
selected
Fetches JSON from the new URL and merges it into the existing state. The following update will ignore <amp-state>elements to prevent cycles.
<amp-twitter>
[data-tweetid]
[controls]
[loop]
[poster]
[preload]
See corresponding amp-video attributes.
amp-video
<amp-youtube>
[data-videoid]
<a>
[href]
<button>
[type]
[value]
<details>
See corresponding details attributes.
<fieldset>
<image>
[xlink:href]
See corresponding image attributes.
<input>
[accept]
[accessKey]
[autocomplete]
[checked]
[inputmode]
[maxlength]
[multiple]
[pattern]
[placeholder]
[readonly]
[required]
[selectiondirection]
[size]
[spellcheck]
[step]
See corresponding input attributes.
<option>
[label]
See corresponding option attributes.
<optgroup>
See corresponding optgroup attributes.
<section>
[data-expand]
section
amp-accordion
<select>
[autofocus]
See corresponding select attributes.
<source>
See corresponding source attributes.
<track>
See corresponding track attributes.
<textarea>
[cols]
[defaultText]
[minlength]
[rows]
[selectionend]
[selectionstart]
[wrap]
Use [defaultText] to update initial text, and [text] to update current text. See corresponding textarea attributes.
For security reasons, binding to innerHTML is disallowed.
innerHTML
All attribute bindings are sanitized for unsafe values (e.g., javascript:).
javascript:
Test in development mode. Enter development by adding the fragment #development=1 to the end of the URL. This highlights warnings and errors in the browser console during development and grants access to special debugging functions.
#development=1
In development mode, amp-bind will issue a warning when the default value of a bound attribute doesn't match its corresponding expression's initial result. This can help prevent unintended mutations caused by changes in other state variables. For example:
<!-- The element's default class value ('def') doesn't match the expression result for [class] ('abc'), so a warning will be issued in development mode. --> <p [class]="'abc'" class="def"></p>
In development mode, amp-bind will also issue a warning when dereferencing undefined variables or properties. This can also help prevent unintended mutations due to null expression results. For example:
<amp-state id="myAmpState"> <script type="application/json"> {"foo": 123} </script> </amp-state> <!-- The amp-state#myAmpState does not have a `bar` variable, so a warning will be issued in development mode. --> <p [text]="myAmpState.bar">Some placeholder text.</p>
Below outlines the types of errors that may arise when working with amp-bind.
default-src blob:
Use AMP.printState() to print the current state to the console. To make this work, you need to enable the development mode.
AMP.printState()
The BNF-like grammar for amp-bind expressions:
expr: operation | invocation | member_access | '(' expr ')' | variable | literal ; operation: '!' expr | '-' expr %prec UMINUS | '+' expr %prec UPLUS | expr '+' expr | expr '-' expr | expr '*' expr | expr '/' expr | expr '%' expr | expr '&&' expr | expr '||' expr | expr '<=' expr | expr '<' expr | expr '>=' expr | expr '>' expr | expr '!=' expr | expr '==' expr | expr '?' expr ':' expr ; invocation: NAME args | expr '.' NAME args | expr '.' NAME '(' arrow_function ')' | expr '.' NAME '(' arrow_function ',' expr ')' ; arrow_function: '(' ')' '=>' expr | NAME '=>' expr | '(' params ')' '=>' expr ; params: NAME ',' NAME | params ',' NAME ; args: '(' ')' | '(' array ')' ; member_access: expr member ; member: '.' NAME | '[' expr ']' ; variable: NAME ; literal: primitive | object_literal | array_literal ; primitive: STRING | NUMBER | TRUE | FALSE | NULL ; array_literal: '[' ']' | '[' array ']' | '[' array ',' ']' ; array: expr | array ',' expr ; object_literal: '{' '}' | '{' object '}' | '{' object ',' '}' ; object: key_value | object ',' key_value ; key_value: key ':' expr ; key: NAME | primitive | '[' expr ']' ;
You've read this document a dozen times but it doesn't really cover all of your questions? Maybe other people felt the same: reach out to them on Stack Overflow.