我有以下
______________________
|CHUCK | 8" |
______________________
|DIAMETER| 250 MM |
_____________________
|LENGTH | 450 MM |
______________________
|CONTROL | FANUC OTC|
然后我使用测试代码
为该方法创建了一个js文件products_controller:
def update
respond_to do |format|
if @product.update(product_params)
format.html { redirect_to @product, notice: 'Product was successfully updated.' }
format.json { render :show, status: :ok, location: @product }
format.js
else
format.html { render :edit }
format.json { render json: @product.errors, status: :unprocessable_entity }
end
end
end
为什么它没有被执行?,turbolinks的一些问题?