Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 739 Bytes

result.navigate.md

File metadata and controls

34 lines (24 loc) · 739 Bytes

Result.navigate

The navigate function is established to navigate to another jsp. It can be called as far as once.

Sample

var result = new Result();
result.navigate("the next page url");

API

CallingReturning
Result . navigate ( url )Result
Result . navigate ( url , params )Result
ParametersTypeDescription
urlStringThe url which will be navigated.
paramsObjectThe params which will be added after the url.
{param1:value1, param2:value2,...}