delormejonathan/laravel-js-routing 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

delormejonathan/laravel-js-routing

Composer 安装命令:

composer require delormejonathan/laravel-js-routing

包简介

Laravel 4/5 package to access Routing from Javascript

README 文档

README

This package allows you to access Laravel's routing from your Javascript.

The main feature is the possibility to use it easily in local and production environment.

In local environment, the JS routes are re-written each request. In production environment, the JS routes are dumped in a static file for better performance.

If you're using Laravel 4, please read this documentation : Laravel 4 README

Installation

Add this line to your composer.json and run composer update

"delormejonathan/laravel-js-routing": "~2.0"

Add the provider to app.php to the providers section

DelormeJonathan\LaravelJsRouting\LaravelJsRoutingServiceProvider::class,

Add the facade to app.php to the aliases section

'JSRouter' => DelormeJonathan\LaravelJsRouting\Facades\JSRouter::class,

Publish assets to public folder

php artisan vendor:publish --tag=public --force

Usage

Call the JSRouter plugin in your application template :

<script type="text/javascript" src="{{ asset('packages/delormejonathan/laravel-js-routing/jsrouter.js') }}"></script>

And import routes file dynamically in local and statically in production :

@if (App::environment() == 'production')
	<script type="text/javascript" src="/js/routes.js"></script>
@else
	<script type="text/javascript">{!! JSRouter::generate() !!}</script>
@endif

Now, you can use it in JavaScript :

JSRouter.action('UsersController@edit', { id : 5 }); // For routes without a name
JSRouter.route('mycustomroutename'); // For routes with a name

Don't forget to export routes in production. You can add a custom path right after the 'dump' word. Default path is : public/js/routes.js

php artisan laravel-js-routing:dump
php artisan laravel-js-routing:dump public/mycustompath/mycustomfile.js

Configuration

You can change the default path with the configuration file. You have to publish the config file :

php artisan config:publish delormejonathan/laravel-js-routing

Then modify it in app/config/packages.

Common issues

Browser console report "No routes detected"

Make sure you have at least one route with a name or a controller in your routes.php.

I added a route to Laravel and the JSRouter doesn't see it

If you are in production environment, remember to export your routes with php artisan laravel-js-routing:dump when you change your routes.php

If you are in local environment, remember that your route needs to point to a controller. It can have a name (optional). This package doesn't work with Closure routes.

Contribution & improvements

The plugin is pretty basic currently. He needs a better parsing engine to manage optional parameters.

Issues or features

Feel free to open an issue if you encounter a problem or contact me directly.

Credits

License

This project is licensed under the MIT license.

统计信息

  • 总下载量: 1.02k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 7
  • Watchers: 1
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-09-01

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固