amgrade/bifrost
最新稳定版本:v1.1.0
Composer 安装命令:
composer require amgrade/bifrost
包简介
Bridge between PHP and JS variables
README 文档
README
This package deleloped to be like a bridge between PHP and JavaScript.
Installation
composer require amgrade/bifrost
Usage
// Somewhere in your controller class. \AMgrade\Bifrost\Bifrost::push(['foo' => 'bar', 'baz' => 'foo']);
// Later in your view (e.g. Laravel Blade). <head> ... {!! \AMgrade\Bifrost\Bifrost::toHtml() !!} </head>
// In your JS app. console.log(window.Bifrost.foo); console.log(window.Bifrost.baz);
Configuration
You can pass your own namespace to prevent name conflicts.
<head> ... {!! \AMgrade\Bifrost\Bifrost::toHtml('YOUR_NAMESPACE') !!} </head>
// In your JS app. console.log(window.YOUR_NAMESPACE.foo); console.log(window.YOUR_NAMESPACE.baz);
统计信息
- 总下载量: 142
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-11-07