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
}
ページを更新すると、上部に「NO」が表示されます???
js と php を混在させたときに値を表示する最良の方法は何ですか? ありがとう