the general jump address is 127.0.0.1 http://127.0.0.1" 8080 jump address 123456,
and then becomes http://127.0.0.1:8080/?id=123456-sharp/index/home
. How can I put the id=123456 at the end?
the general jump address is 127.0.0.1 http://127.0.0.1" 8080 jump address 123456,
and then becomes http://127.0.0.1:8080/?id=123456-sharp/index/home
. How can I put the id=123456 at the end?
<router-link :to="{path:'storeIndex',query:{storeId:item.id}}" exact></router-link>
or
this.$router.push({
path: "orderSettlement",
query: {
id: goodId,
optionid: optionid,
total: goods_num
}
});
Previous: On the problem of string modification
Next: Different open platforms, bound to the same Mini Program, can the user's data be unified?