Chao ZHOU
Chao ZHOU
哦,明白了Response是支持的,Request body确实不支持。 后续可以考虑增加按钮。
Okay, I will put this feature in RESTClient roadmap.
Thanks for reporting, I will fix this as soon as possible.
I will add this to my todo list, but this is not top priority.
Here is the log when I try to do a $role->delete(); ``` [2016-11-21 14:13:10] local.ERROR: InvalidArgumentException: Model must be node. in /var/www/html/vendor/kalnoy/nestedset/src/DescendantsRelation.php:33 Stack trace: #0 /var/www/html/vendor/kalnoy/nestedset/src/NodeTrait.php(275): Kalnoy\Nestedset\DescendantsRelation->__construct(Object(Kalnoy\Nestedset\QueryBuilder), Object(App\Models\Role)) #1 /var/www/html/vendor/kalnoy/nestedset/src/NodeTrait.php(651):...
Well, I give up, I added a increment id for role table.
目前我采用的方法是,在打开Calendar组件之前把uview的单位改回px,在Calendar关闭时再改回rpx。 ``` JavaScript uni.$u.setConfig({ config: { unit: 'px' } }) ```
Well, I made some modifications for resolveNode function as following, it works well. ```php protected function resolveNode($node) { if (method_exists($node, 'refresh') && is_callable([$node, 'refresh'])) { return $node->refresh(); } if ($node...
很奇怪,手头有一块去年11月份买的1.46板子,直接编译烧录没有任何问题。同样编译出来固件烧录到2月份买的1.46上也一直在重启。看了下日志: ``` ]| InputEn: 1| OutputEn: 1| OpenDrain: 1| Pullup: 0| Pulldown: 0| Intr:0 E (293) i2c.master: I2C transaction unexpected nack detected E (293) i2c.master: s_i2c_synchronous_transaction(888): I2C transaction failed E...
我这个怀疑是电路有问题,改了下InitializeI2c的代码,把I2C的地址都列出来看了一下。只有0x51, 0x6B, 0x7E,没有TCA9554的0x20 ``` void InitializeI2c() { // Initialize I2C peripheral i2c_master_bus_config_t i2c_bus_cfg = { .i2c_port = (i2c_port_t)0, .sda_io_num = I2C_SDA_IO, .scl_io_num = I2C_SCL_IO, .clk_source = I2C_CLK_SRC_DEFAULT, }; ESP_ERROR_CHECK(i2c_new_master_bus(&i2c_bus_cfg, &i2c_bus_));...