Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
32 lines (25 loc) · 789 Bytes

result.navigate.md

File metadata and controls

32 lines (25 loc) · 789 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.
For efw-4iAP Script, it is a relative path without ext.
paramsObjectThe params which will be added after the url.
	{param1:value1, param2:value2,...}