0

我有一个对 php 文件进行 JSON 调用的 controller.js。在 php 文件中,我需要查看一些值,当我回显它时它不会显示。

这是我的代码:

//Controller.js
show: function(data) {
var self = this,
salesquoteguid = data && data.salesquoteguid || self.salesquoteguid;

$.getJSON('data/load.salesquote.php', {salesquoteguid: salesquoteguid}, function(data) {
self.set('salesquoteguid', salesquoteguid);
self.set('content', data);
self.set('pricemethod', data.pricemethod);
self.set('salesquoteitems', data.salesquoteitems);
    });
},

//data/load.salesquote.php
function getSalesquoteitemRecords(//some parameter)
{
   if ($contentlocation = App::getContentLocation()) {
     $contentlocation.= 'images/item/';
 $targetDirExists = PATH_CLEVVA.$contentlocation;
 $targetDir = PATH_CLEVVA_DISPLAY.$contentlocation;
}
   echo $contentlocation;  // I need to see this value 
}

当我刷新页面时,顶部显示“否”???

将 js 与 php 混合使用时显示值的最佳方式是什么?谢谢

4

1 回答 1

2

改变:

echo $contentlocation;

到:

echo json_encode($contentlocation);

因为$.getJSON需要脚本发送 JSON。

于 2013-10-25T08:48:24.573 回答