小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序和后端初学者 这里是想实现wx.login获取code 传到服务器获取open id
但输出返回的res得到的 只是php的文本内容 为什么呢?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
需要配置nginx 转发给 php-fpm 解析
如:
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
可以先运行起php 再和小程序联调
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
先确定本地php环境是否正常跑起来了
PHP代码是要执行的,你是不是没有配置php-fpm啥的,没搞服务器环境
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
需要配置nginx 转发给 php-fpm 解析
如:
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
可以先运行起php 再和小程序联调
先确定本地php环境是否正常跑起来了
PHP代码是要执行的,你是不是没有配置php-fpm啥的,没搞服务器环境