©
Dokumen ini menggunakanManual laman web PHP CinaLepaskan
$sceDelegateis a service that is used by the$sceservice to provide Strict Contextual Escaping (SCE) services to AngularJS.
Typically, you would configure or override the $sceDelegate instead of the$sceservice to customize the way Strict Contextual Escaping works in AngularJS. This is because, while the$sceprovides numerous shorthand methods, etc., you really only need to override 3 core functions (trustAs,getTrustedandvalueOf) to replace the way things work because$scedelegates to$sceDelegatefor these operations.
Refer $sceDelegateProvider to configure this service.
The default instance of$sceDelegateshould work out of the box with little pain. While you can override it completely to change the behavior of$sce, the common case would involve configuring the $sceDelegateProvider instead by setting your own whitelists and blacklists for trusting URLs used for loading AngularJS resources such as templates. Refer $sceDelegateProvider.resourceUrlWhitelist and $sceDelegateProvider.resourceUrlBlacklist
$sceDelegate();
trustAs(Type,value);
Returns an object that is trusted by angular for use in specified strict contextual escaping contexts (such as ng-bind-html, ng-include, any src attribute interpolation, any dom event binding attribute interpolation such as for onclick, etc.) that uses the provided value. See $sce for enabling strict contextual escaping.
| 参数 | 类型 | 详述 |
|---|---|---|
| type | string | The kind of context in which this value is safe for use.例如 url, resourceUrl, html, js and css. |
| value | * | The value that that should be considered trusted/safe. |
| * | A value that can be used to stand in for the provided |
valueOf(value);
If the passed parameter had been returned by a prior call to$sceDelegate.trustAs, returns the value that had been passed to$sceDelegate.trustAs.
If the passed parameter is not a value that had been returned by$sceDelegate.trustAs, returns it as-is.
| 参数 | 类型 | 详述 |
|---|---|---|
| value | * | The result of a prior |
| * | The |
getTrusted(Type,maybeTrusted);
Takes the result of a$sceDelegate.trustAscall and returns the originally supplied value if the queried context type is a supertype of the created type. If this condition isn't satisfied, throws an exception.
| 参数 | 类型 | 详述 |
|---|---|---|
| type | string | The kind of context in which this value is to be used. |
| maybeTrusted | * | The result of a prior |
| * | The value the was originally provided to |