index.wxml
<
view
>
<
button
bindtap
="
jump
">
jump to next page
</
button
>
</
view
>
index.js
const
app
=
getApp
()
Page
(
{
jump
:
function
()
{
wx
.
navigateTo
(
{
url
:
'
./test?name=name
'
}
)
},
}
)
test.js
Page
(
{
onLoad
:
function
(
option
)
{
this . my_console ( option . name )
},
my_console
:
function
(
name
){
console
.
log
(
name
)
}
}
)
来源:oschina
链接:https://my.oschina.net/u/3100176/blog/4911045