定制 amgrade/bifrost 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-11-07