內的給定PHP腳本,我有以下幾點:服務器端代碼與客戶端代碼混合 - 最佳實踐
<script>
function showMember() {
return $.ajax({ //Perform an asynchronous HTTP (Ajax) request.
type: 'get',
//A string containing the URL to which the request is sent.
url: '<?php echo $this->createUrl('member'); ?>',
...
這工作,如果我把這個PHP文件裏。
但是,這似乎不是一個組織事情的好方法,我希望將所有這些代碼放在一個單獨的.js文件中。
處理這些情況的正確方法是什麼?
的可能的複製http://stackoverflow.com/questions/2267894/what-the-best-way-to-handle-server-side-tags-inside-of-a-js-file – Simone 2013-04-28 13:06:22