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バージョンで動作するにはどうすればよいですか?
私はphpタグで次のhrefを持っています。それは1.xで動作し、私は2.xバージョンに移行する必要があります。Hrefの1.xから2.xへの移行?
<a href="<?=base_url('report/message/compose/{{student.StudentID}}')?>">test</a>
2.xバージョンで動作するにはどうすればよいですか?
はこのようにそれを行うことができます。
<a v-bind:href=" '<?=base_url('report/message/compose/')?>' + student.StudentID">test</a>
あなたはこれを行うことができるようになります。
<a :href="'/report/message/compose/' + student.StudentID">test</a>
<?= base_url()?>を追加できません。 – user3391137
@ user3391137これはなぜ必要なのですか? – Saurabh
私はこの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