mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
Update args.md
This commit is contained in:
parent
90dc07219f
commit
8395e545d0
@ -110,12 +110,13 @@ Initial args for the currently active story can be overruled by setting the `arg
|
||||
|
||||
In order to protect against [XSS](https://owasp.org/www-community/attacks/xss/) attacks, keys and values of args specified through the URL are limited to alphanumeric characters, spaces, underscores and dashes. Any args that don't abide these restrictions will be ignored and stripped, but can still be used through code and manipulated through the Controls addon.
|
||||
|
||||
The `args` param is always a set of `key:value` pairs delimited with a semicolon `;`. Note that values will always be interpreted as strings. Objects and arrays are supported. For example, `args=obj.key:val;arr[]:one;arr[]:two` will be interpreted as:
|
||||
The `args` param is always a set of `key:value` pairs delimited with a semicolon `;`. Values will be coerced (cast) to their respective `argTypes` (which may have been automatically inferred). Objects and arrays are supported. Special values `null` and `undefined` can be set by prefixing with a bang `!`. For example, `args=obj.key:val;arr[0]:one;arr[1]:two;nil:!null` will be interpreted as:
|
||||
|
||||
```
|
||||
{
|
||||
obj: { key: 'val' },
|
||||
arr: ['one', 'two']
|
||||
arr: ['one', 'two'],
|
||||
nil: null
|
||||
}
|
||||
```
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user