gpt4 book ai didi

javascript - 混合 php 和 javascript 时显示值的最佳方式

转载 作者:行者123 更新时间:2023-12-02 18:12:39 25 4
gpt4 key购买 nike

我有一个controller.js,它对php文件进行JSON调用。在 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 混合使用时,显示值的最佳方式是什么?谢谢

最佳答案

更改:

echo $contentlocation;

至:

echo json_encode($contentlocation);

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

关于javascript - 混合 php 和 javascript 时显示值的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19585195/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com