coreplex/bridge 问题修复 & 功能扩展

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

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

coreplex/bridge

最新稳定版本:v0.2.0

Composer 安装命令:

composer require coreplex/bridge

包简介

A php package to share data from your back end code to the front end

关键字:

README 文档

README

Ever found yourself needing to access back end data in your JavaScript or front end code? Well that's the aim of this package.

Installation

This package requires PHP 5.4+, and includes a Laravel 5 Service Provider and Facade.

We recommend installing the package through composer. You can either call composer require coreplex/notifier in your command line, or add the following to your composer.json and then run either composer install or composer update to download the package.

"coreplex/bridge": "~0.1"

Laravel 5 Integration

To use the package with Laravel 5 firstly add the javascript service provider to the list of service providers in app/config/app.php.

'providers' => array(

  Coreplex\Bridge\JavascriptServiceProvider::class,

);

If you wish to use the facade then add the following to your aliases array in app/config/app.php.

'aliases' => array(

  'Javascript'  => Coreplex\Bridge\Facades\Javascript::class,

);

Usage

To get started with the JavaScript component you simply need to create a new instance of the Javascript class.

$bridge = new Javascript();

Or if you are using laravel then you can access the class via it's facade or you can resolve it from the IOC container by its contract.

Javascript::share('foo, 'bar');

public function __construct(Coreplex\Bridge\Contracts\Javascript $bridge)
{
    $this->bridge = $bridge;
}

Sharing Data

To share data to the front end use the share method. You can either pass a key and value as arguments or pass an array of key value pairs. The share method can also be chained if you prefer.

$bridge->share('foo', 'bar')->share('baz', 'qux');
// OR
$bridge->share(['foo' => 'bar', 'baz' => 'qux']);

Rendering Data

To access your shared data on the front end call the renderSharedData method. This will then echo out all of the necessary scripts.

echo $bridge->renderSharedData();

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 3
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-04-13