分类 PHP 下的文章

很奇怪,我在本地centos8+宝塔环境正常,但传到服务器环境windows2016+phpstudy上,在post时就出现这个错误。查了很多资料后来找到了一位大佬的解决办法,并按照些方法执行把问题解决了。

传送门:http://www.blog1024.com/blog/11.html

再次感谢作者!!

后来再发现,这个办法也能解决,apache的重写规则,不知道跟这个是不是一回事,顺手记下来吧!

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>

最科学的理解应该在外键上面:

区别在于外键,文档中一对一关联的例子是一个 User 模型关联一个 Phone 模型,反映到表结构中即
dddddd.png

我(User)拥有(hasOne)一个它(Phone),我(Phone)属于(belongsTo)它(User)。

废话不多说,上代码

html部分

<button type="button" class="layui-btn layui-btn-warm layui-btn-sm" onclick="layuitc('{$val.title}','{$sort_id}','{$val.id}')" >查看图表</button>

js部分

<script type="text/javascript">
    function layuitc(title,sort_id,subject_id){
        layer.open({
            type:2,//0(信息框,默认)1(页面层)2(iframe层)3(加载层)4(tips层)
            area:['90%','90%'],
            title:[title,'15px'],
            content: '{:url("comment.pop/echarts")}?sort_id='+sort_id+'&subject_id='+subject_id,
        })
    }
</script>

注意,上面的js代码可以不放在layui.user();内哦。

错误提示

Access to XMLHttpRequest at 'http://localhost:8080/api/user/login' from origin 'http://localhost

解决方案

1、HTML部分

ajax 请求加入 contentType: "application/x-www-form-urlencoded"
请求如下:

$.ajax({
            type: "post",
            url: 'url',
            contentType: "application/x-www-form-urlencoded",
            data: {"gameCode": 106, type: "2",version:1,uid:1},
            dataType: "json",
            success: function (data,status) {
                console.log(data);
            }
        });

2、PHP部分

PHP 文件中加入请求头部 header ('Access-Control-Allow-Origin: *') ;

<?php 
    header('Access-Control-Allow-Origin: *');
    $arr = [
        array('id'=>1,'title'=>'one1'),
        array('id'=>2,'title'=>'one2'),
        array('id'=>3,'title'=>'one3'),
        array('id'=>4,'title'=>'one4'),
    ];
    echo json_encode($arr);
 ?>

3、请求数据

微信截图_20201011010842.png

文章转自:https://learnku.com/articles/32041