php JavaScript SPA Laravel代客司机。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php JavaScript SPA Laravel代客司机。相关的知识,希望对你有一定的参考价值。

<?php

class JavaScriptSPAValetDriver extends ValetDriver
{
    /**
     * Determine if the driver serves the request.
     *
     * @param  string  $sitePath
     * @param  string  $siteName
     * @param  string  $uri
     * @return bool
     */
    public function serves($sitePath, $siteName, $uri)
    {
        if (file_exists($sitePath . '/dist/index.html'))
        {
            return true;
        }

        return false;
    }

    /**
     * Determine if the incoming request is for a static file.
     *
     * @param  string  $sitePath
     * @param  string  $siteName
     * @param  string  $uri
     * @return string|false
     */
    public function isStaticFile($sitePath, $siteName, $uri)
    {
        if (file_exists($staticFilePath = $sitePath . '/dist/' . $uri))
        {
            return $staticFilePath;
        }

        return false;
    }

    /**
     * Get the fully resolved path to the application's front controller.
     *
     * @param  string  $sitePath
     * @param  string  $siteName
     * @param  string  $uri
     * @return string
     */
    public function frontControllerPath($sitePath, $siteName, $uri)
    {
        return $sitePath . '/dist/index.html';
    }
}

以上是关于php JavaScript SPA Laravel代客司机。的主要内容,如果未能解决你的问题,请参考以下文章

larave Elasticsearch scout Unsupported operand types报错

手把手教你跑Larave框架实战笔记系列之二

javascript jQuery e Bootstrap em SPA

SPA 的概念

SPA

用于在非 SPA 站点上构建可重用组件的 Javascript MVC 框架