setQuery

The setQuery function is used to retrieve information about the current mini program startup information.

Method signature

copy
setQuery(query: String):GRVStartupParams.Builder

Parameters

Parameter

Data Type

Default value

Required

Description

query

String

""

Yes

This parameter is used to retrieve information about the current mini program startup and pass it with key-value pairs to the mini program.

The value of this parameter must be in the form of key1=value or key1=value1&key2=value2. When multiple parameters are included, use the & symbol to concatenate them.

Sample

copy
val startupParams = GRVStartupParams.createBuilderForApp(context, appId)
    .setQuery("key=value&key2=value2")
    .build()
Griver.openApp(startupParams,null)