2017-02-26 11 views
0

私はphpタグで次のhrefを持っています。それは1.xで動作し、私は2.xバージョンに移行する必要があります。Hrefの1.xから2.xへの移行?

<a href="<?=base_url('report/message/compose/{{student.StudentID}}')?>">test</a> 

2.xバージョンで動作するにはどうすればよいですか?

答えて

0

はこのようにそれを行うことができます。

<a v-bind:href=" '<?=base_url('report/message/compose/')?>' + student.StudentID">test</a> 
0

あなたはこれを行うことができるようになります。

<a :href="'/report/message/compose/' + student.StudentID">test</a> 
+0

<?= base_url()?>を追加できません。 – user3391137

+0

@ user3391137これはなぜ必要なのですか? – Saurabh

+0

私はこのhrefを "http:// localhost/app/demo/school/student"から呼び出しています。 ベースURLはbase_url()で与えられているように "http:// localhost/app/demo"ですので、このhrefは "http:// localhost/app/demo/report/message/compose/'+ studentをリンクします。学生証"。これが私がbase_url()を追加した理由です。 – user3391137

関連する問題