my.deeplink
Get file information.
Sample Code
copy
my.call('deeplink', {
uri: 'bepay://bancoestado/deeplink.htm?xxxxxxx',
success: function(res) {
my.alert({ title: 'deeplink', content: JSON.stringify(res) });
},
fail: function(res) {
my.alert({ title: 'deeplink fail', content: JSON.stringify(res) });
},
});Parameters
| Property | Type | Required | Description |
uri | String | Yes | scheme uri |
| success | Function | No | Callback function upon call success. |
| fail | Function | No | Callback function upon call failure. |
| complete | Function | No | Callback function upon call completion (to be executed upon either call success or failure). |
Success Callback Function
The incoming parameter is of the Object type with the following attributes:
| Property | Type | Description |
success | bool | true|false |
resultCode | Int | 0: success 1002: internal error |
