我想連接json對象和cakephp代碼之間。形成有效的超鏈接。concat JavaScript與cakephp
這是JSON對象= item.Customer.customers_name
我想JSON對象(客戶名稱)是在超鏈接的CakePHP顯示。
的最終結果將是
<li class="icn_list_users">
<a href="/admin/scores/edit_test_a_1/345/abcdef/2949/scores">Ty John</a>
</li>
不是我似乎能頂CONCAT js和PHP的吻合。
<script type="text/javascript">
$.getJSON("http://localhost:8888/tests/teststudents.json?id=<?php echo $this->params['pass'][1]; ?>", function(data) {
var ul = $('#teststudents');
$.each(data, function (i, item) {
ul.append($('<li class="icn_list_users"><?php echo $html->link(' + item.Customer.customers_name + ', array('admin'=> true, 'controller' => 'scores','action' => $scoresheetpath, $this->params['pass'][1],$range)); ?></li>'));
});
});
</script>