biggerdong

849 经验值

怎么给手机验证码那一块增加自定义validator啊,然后bootstrap爆红显示在页面输入框上?
涉及到后端代码,比如Auth自带的登录验证也涉及到后端代码,这些代码该写在哪,给点思路?

为了验证手机验证码,专门建了一张表存取。一开始本想着用COOKIE,但觉得不合适,就给换了。
还有一个问题就是怎么给手机验证码那一块增加自定义validator啊,然后bootstrap爆红显示在页面输入框上?

使用了Laravel 的Auth服务,现在就是收到验证码后,点击 注册 按钮后直接就保存了,在哪更改这个方法,验证后再保存。

laravel-admin怎样修改数据呢?控制器只有一个edit方法,报错404!

        $questions_pre = $this->questionRepository->getQuestionsFeed();
        $key = 'questions';
        foreach ($questions_pre as $question) {
            //将问题存放到集合中
            Redis::sadd($key,$question);
        }
        //获取集合元素总数(如果指定键不存在返回0)
        $nums = Redis::scard($key);
        if($nums>0){
            //从指定集合中获取数据
            $questions = collect(Redis::smembers($key));
        }
        dd($questions);
<template>
    <a class="btn btn-sm btn-success" v-bind:class="{'follows': !followed}"  v-cloak  v-text="text" v-on:click="follow"
       style="width: 100px;"></a>
</template>

<script>
    export default {
        props:['question'],
        mounted() {
            axios.post('/api/question/isfollowed',{'question':this.question}).then(response => {
                this.followed = response.data.followed
            })
        },
        data() {
            return {
                followed: '',
            }
        },
        computed: {
            text() {
                return this.followed ? '已关注' : '关注问题'
            }
        },
        methods: {
            follow() {
                axios.post('/api/question/follow',{'question':this.question}).then(response => {
                    this.followed = response.data.followed
                })
            }
        }
    }
</script>

<style>
    [v-cloak] {
        display: none;
    }
</style>

直接在vue组件button标签里加了个v-cloak,然后在vue组件的javascript代码下面写上[v-cloak] {
display: none;
}
不起作用?按照网上那种说法也没调好,怎么解决呢?

搜索超时了,有什么好的办法解决这个Algolia么?Hosts unreachable: Connection timed out after 1006 milliseconds,Connection timed out after 1004 milliseconds.

User里面

    public function follows()
    {
        return $this->belongsToMany(Question::class,'user_question')->withTimestamps();
    }

Question里面

    public function follows()
    {
        return $this->belongsToMany(User::class,'user_question')->withTimestamps();
    }

然后要怎么调用呢,取出来的都是创建问题,不是关注问题