1.在index.php控制器中写goto方法
//url 跳转,微信第一次会跳转到主页,
    //参数需要urlencode(),否则会出问题。
    public function gotoAction(){
    $url=$_GET['url'];
        redirect('/#/'.$url);
    }


2.this.codeLink ='http://yc.wzjo2o.com/#/film/getfilm?activityid='+row.ID; //原来出错时候的写法


3.this.codeLink = 'http://yc.wzjo2o.com/index/goto?url=' +encodeURI('film/getfilm?activityid='+row.ID); //解决了的写法


注释: encodeURI() 函数可把字符串作为 URI 进行编码。用于一个参数.
注释: encodeURIComponent() 用于两个或以上的参数.
Logo

前往低代码交流专区

更多推荐