devgeniem/dustpress-js 问题修复 & 功能扩展

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

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

devgeniem/dustpress-js

最新稳定版本:4.4.3

Composer 安装命令:

composer require devgeniem/dustpress-js

包简介

A DustPress plugin that provides a handy JavaScript library for using your DustPress Model methods on the front end.

README 文档

README

geniem-github-banner

DustPress Plugin: DustPress.js

A DustPress plugin that provides a handy JavaScript library for using your DustPress model methods on the front end.

Usage

You can call for SomeModel's method SomeMethod with following code:

dp( 'SomeModel/SomeMethod', { tidy: true, args: { 'foo': 'bar' } }).then( ( data ) => { // do what you want with the data }).catch( ( error ) => { // possible error });

tidy: true parameter cleans up the data tree a bit for more usability. Feel free to try the queries with and without it to see the difference.

args parameter passes arguments to the PHP side. They can be accessed there with $this->get_args();.

If you want, you can even render HTML with Dust templates.

dp( 'SomeModel/SomeMethod', { partial: 'SomePartial', }).then( ( data ) => { // do what you want with the data }).catch( ( error ) => { // possible error });

This code takes the data of SomeMethod and renders it with SomePartial. Variable data then contains the ready html.

If you still want to get the data output as well, use argument data: true and you will get the resulting data as the second parameter of your success function.

You can also omit the method completely if you want to get the data of a complete model.

dp( 'SomeModel/SomeMethod' ).then( ( data ) => { // do what you want with the data }).catch( ( error ) => { // possible error });

It is also possible to use the dp call with the async-await pattern:

try { var foobar = await dp( 'SomeModel/SomeMethod', { tidy: true, args: { foo: 'bar' } }); } catch( err ) { console.error( err ); }

Now data will consist of an object with the methods' names as keys and their return values as the values. Obviously you can also render that to HTML as well.

Additional parameters

bypassMainQuery

By default DustPress.js requests bypass WordPress' main WP_Query so that it wouldn't slow the request down when it's not necessary. You can prevent that from happening by setting bypassMainQuery: false if you want to use the default query.

Model function front-end visibility

You need to make your methods accessible for DustPress.js by defining a property named $api in your model. It should be an array consisting of the names of your accessible methods. DustPress.js can also run protected methods which are not automatically run by DustPress normally.

class SomeModel extends DustPressModel { public $api = [ 'SomeMethod' ]; protected function SomeMethod() { // Some code.. } } 

If you need to determine whether a call has been made from ajax or not, you can use dustpress()->is_dustpress_ajax() function like shown below:

class SomeModel extends DustPressModel { public $api = [ 'PublicMethod' ]; public function PublicMethod() { if ( dustpress()->is_dustpress_ajax() ) { // Do not run if this an ajax request. return; } // Some code.. } } 

Install

Recommended installation to a WordPress project is through composer:

$ composer require devgeniem/dustpress-js 

Obviously you can also download the ZIP file from GitHub and extract it into your plugins directory.

统计信息

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

GitHub 信息

  • Stars: 3
  • Watchers: 29
  • Forks: 3
  • 开发语言: JavaScript

其他信息

  • 授权协议: GPL-3.0
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固